Re: [sqlite] SQLite without callback function

2006-05-30 Thread John Stanton
Please respond to sqlite-users@sqlite.org To sqlite-users@sqlite.org cc Subject Re: [sqlite] SQLite without callback function Use sqlite3_prepare, sqlite3_step, sqlite3_reset and sqlite3_finalize. [EMAIL PROTECTED] wrote: I think I know the answer to this but I figured it would be better to

Re: [sqlite] SQLite without callback function

2006-05-30 Thread Mario . Hebert
Have not you forgot the bind ? Mario Hebert Legerity John Stanton <[EMAIL PROTECTED]> 05/30/2006 04:55 PM Please respond to sqlite-users@sqlite.org To sqlite-users@sqlite.org cc Subject Re: [sqlite] SQLite without callback function Use sqlite3_prepare, sqlite3_step, sqlite3_res

Re: [sqlite] SQLite without callback function

2006-05-30 Thread John Stanton
Use sqlite3_prepare, sqlite3_step, sqlite3_reset and sqlite3_finalize. [EMAIL PROTECTED] wrote: I think I know the answer to this but I figured it would be better to ask than to do a major design flaws. :) What is the most efficient way in SQLite (using the C/C++ interface layer) to retrieve

Re: [sqlite] SQLite without callback function

2006-05-30 Thread Jay Sprenkle
On 5/30/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I think I know the answer to this but I figured it would be better to ask than to do a major design flaws. :) What is the most efficient way in SQLite (using the C/C++ interface layer) to retrieve the result of a query without using the ca

[sqlite] SQLite without callback function

2006-05-30 Thread Mario . Hebert
I think I know the answer to this but I figured it would be better to ask than to do a major design flaws. :) What is the most efficient way in SQLite (using the C/C++ interface layer) to retrieve the result of a query without using the callback function (setting it to NULL) ? Thanks, Mario H