Re: [sqlite] Filling struct Select in sqlite

2014-10-06 Thread Kees Nuyt
On Mon, 6 Oct 2014 10:28:59 +0530, Prakash Premkumar wrote: >Instead of generating an sql query for a select statement, I would like to >bypass the parser and fill in struct Select by myself based on the data I >have and Pass it to sqlite3Select() function. Can you

Re: [sqlite] Filling struct Select in sqlite

2014-10-06 Thread Clemens Ladisch
Prakash Premkumar wrote: > Instead of generating an sql query for a select statement, I would like to > bypass the parser and fill in struct Select by myself based on the data I > have and Pass it to sqlite3Select() function. Can you please give me some > pointers in this direction ? Just do the

[sqlite] Filling struct Select in sqlite

2014-10-05 Thread Prakash Premkumar
Hi, Instead of generating an sql query for a select statement, I would like to bypass the parser and fill in struct Select by myself based on the data I have and Pass it to sqlite3Select() function. Can you please give me some pointers in this direction ? I think eliminating parsing would be an