Re: [sqlite] Fetch whole result set to memory

2009-07-10 Thread Eberhard, Markus (external)
> > Eberhard, Markus (external) wrote: > > I'm using SQLite in my application and I would like to fetch the whole > > result set of a select statement to memory. > > I can't use sqlite3_get_table since it doesn't support BLOBs as far > > as I know. > > Curre

[sqlite] Fetch whole result set to memory

2009-07-09 Thread Eberhard, Markus (external)
Hi, I'm using SQLite in my application and I would like to fetch the whole result set of a select statement to memory. I can't use sqlite3_get_table since it doesn't support BLOBs as far as I know. Currently I'm using function sqlite3_step to itterate through the result set; that function calls