Tom Parke <[EMAIL PROTECTED]> wrote:
Using sqlite3_prepare and then sqlite3_step() ing through the records,
is there a way to update or replace the current record in a table
while sqlite3_step() is on that record without a reselecting that
record and sqlite3_exec() update table where?  Something like a
dynamic cursor in MS SQL?

No. You have to issue a regular update statement using current record's ROWID in the WHERE clause.

Igor Tandetnik

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

Reply via email to