Re: [sqlite] Fetch all result set to memory

2007-12-21 Thread drh
"Ofir Neuman" <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using SQLite in a multithread application and I would like to fetch every > select statement into the memory. > > I can't use sqlite3_get_table since it doesn't support Unicode as far as I > know. > > Is there a better way to fetch all

Re: [sqlite] Fetch all result set to memory

2007-12-21 Thread John Stanton
Whichever way you do it Sqlite fetches the rows one by one. Ofir Neuman wrote: Hi, I'm using SQLite in a multithread application and I would like to fetch every select statement into the memory. I can't use sqlite3_get_table since it doesn't support Unicode as far as I know. Is there a

[sqlite] Fetch all result set to memory

2007-12-21 Thread Ofir Neuman
Hi, I'm using SQLite in a multithread application and I would like to fetch every select statement into the memory. I can't use sqlite3_get_table since it doesn't support Unicode as far as I know. Is there a better way to fetch all the result to memory other than fetching it one by one and