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