I am using the SQLite ORM from Monotouch (https://github.com/praeclarum/sqlite-net)
I am trying to send in multiple parameters, but the parameter that is a string is not being added:
var items = db.Query<NameListItem>
(Select * from table where field=? and field2=?,"SomeString",123);
When I enable trace it correctly displays the query:
Select * from table where field=? and field2=?
0: SomeString
1: 123
Are you sure the table name is really “table”? With SQLite-net, the name of the table is often going to be the name of the data structure that you are storing.
For example, your query should probably look like this: