[sqlite] Way to "Bind" Columns in Prepare

2006-07-30 Thread michael cuthbertson
Of course. Thanks.

Re: [sqlite] Way to "Bind" Columns in Prepare

2006-07-29 Thread Nuno Lucas
On 7/30/06, michael cuthbertson <[EMAIL PROTECTED]> wrote: I need to embed variable column names in my queries, such as 'colX > '2004-01-01' where 'X' is a variable. bind_text will not do this. Is there another way? Yes, do another query. ;-) Seriously, note that if you change the condition

[sqlite] Way to "Bind" Columns in Prepare

2006-07-29 Thread michael cuthbertson
I need to embed variable column names in my queries, such as 'colX > '2004-01-01' where 'X' is a variable. bind_text will not do this. Is there another way? Thanks. Michael