hi guys,
I'm wondering how to bind an NSNumber object into a sqlite3 query:
const char *sql = "select name from myTable where section_id=1 order by name ASC";
I have a NSNumber object called 'nmbr' and want to assign its value to the section id..
Thomas