Re: [sqlite] Re: bind with select?

2006-10-23 Thread Jay Sprenkle
On 10/23/06, Dave Dyer <[EMAIL PROTECTED]> wrote: You don't appear to be using BIND in the manner I was hoping for. You're using BIND to replace variables in the query. I want to use BIND (or something like it) eliminate the need for callback functions to consume the results of a select.

Re: [sqlite] Re: bind with select?

2006-10-23 Thread Dennis Cote
Dave Dyer wrote: You don't appear to be using BIND in the manner I was hoping for. You're using BIND to replace variables in the query. I want to use BIND (or something like it) eliminate the need for callback functions to consume the results of a select. -- At 05:42 PM 10/20/2006, Jay

Re: [sqlite] Re: bind with select?

2006-10-23 Thread John Stanton
Use sqlite3_step. Dave Dyer wrote: You don't appear to be using BIND in the manner I was hoping for. You're using BIND to replace variables in the query. I want to use BIND (or something like it) eliminate the need for callback functions to consume the results of a select. -- At 05:42 PM

[sqlite] Re: bind with select?

2006-10-23 Thread Igor Tandetnik
Dave Dyer <[EMAIL PROTECTED]> wrote: You don't appear to be using BIND in the manner I was hoping for. You're using BIND to replace variables in the query. I want to use BIND (or something like it) eliminate the need for callback functions to consume the results of a select. Use

[sqlite] Re: bind with select?

2006-10-23 Thread Dave Dyer
You don't appear to be using BIND in the manner I was hoping for. You're using BIND to replace variables in the query. I want to use BIND (or something like it) eliminate the need for callback functions to consume the results of a select. -- At 05:42 PM 10/20/2006, Jay Sprenkle wrote: >On