Thanks, but I'm gonna need some further instruction or examples or pointers
to a resource as none of these statements mean anything to me.

> Use this sequence:
> 
> sqlite3_open
> sqlite3_prepare_v2        //Compiles SQL statement
> 
> loop
>  sqlite3_bind...         //Binds variables
> 
>  sqlite3_step            //Executes statement
> 
>  sqlite3_reset           //Readies compiled statement for binding to vars
> until finished
> sqlite3_finalize          //Destroys compiled statement
> sqlite3_close
> 
> 
> Bruce Robertson wrote:
>> Can somebody point me to documentation or examples of sqlite prepare
>> statements and their purose?

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

Reply via email to