UPDATE - Problem solved !
I found the error. I am so sorry, I try to test and be a helpful member... :(
I was calling sqlite3_prepare_v2() twice and it was canceling out everything
apparently. I am building these queries on the fly so I just missed that.

How this happend was because when building a manual query string you call 
sqlite3_prepare_v2() *after*
you have built a string. When your building a string and binding you call 
sqlite3_prepare_v2()
*first* then do the binding, the finally your step statement. I just go that 
mixed up.


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

Reply via email to