Using sqlite 3.6.22.  Here's my sql
SELECT sno, lname, fname FROM addressbook where sno>?
Suppose your stepping through a 100 row result set.  I'm calling 
sqlite3_step(), getting my values all good.  If I were to call 
sqlite3_bind_int() function with a new value for my where clause at row 50, 
does that cause the step to re-execute the entire SQL?  Do I have to do a 
reset, bind, step sequence ?
When does sqlite3_step() evaluate the bound values in the where clause?
Thank you,Mike


      
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to