Yes but imo a rather daunting task.
I better leave it to the author of sqlite :)


----- Original Message ----- From: "Igor Tandetnik" <[EMAIL PROTECTED]>
To: "SQLite" <sqlite-users@sqlite.org>
Sent: Tuesday, December 12, 2006 8:01 PM
Subject: [sqlite] Re: Loss of table feature.. ever?


Edwin Knoppert <[EMAIL PROTECTED]> wrote:
Hello people, i really need to ask this thing again.
My visual design tool has a custom written datacontrol for sqlite.
This means MoveFirst, Previous, next and movelast buttons.

This control depends heavily on the gettable() sqlite functions.

While i already understand that these functions are deprecated and we
should use the prepare stuff.
I do that already except for this control.
At this time the prepare stuff does not seem to work the same as the
table stuff.
Like moveprevious and such?

sqlite3_get_table simply loads the whole resultset into memory. You can do that with sqlite3_prepare et al just as well. In fact, sqlite3_get_table is implemeted in terms of sqlite3_prepare, sqlite3_step and so on.

Igor Tandetnik

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------




-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to