Hi, I have the following statement:
SELECT title, price FROM table WHERE id=?
Should I use to bind ID:
sqlite3_bind_int(myStmt, 0, current_id);
or do I have to use:
sqlite3_bind_int(myStmt, 1, current_id);
My question is - what should be the first binding parameter - 0 or 1?
The same question about getting data with sqlite3_column_xxxx.