Re: [sqlite] Binding binary data in 3.0.4

2004-08-29 Thread D. Richard Hipp
SQLite wrote: The docs for sqlite3_bind_blob() states that passing in SQLITE_STATIC mean that the blob data will be around until "SQLite has finished with it." But when exactly is this? For an INSERT/UPDATE, is it when the statement is executed, or the current transaction commmited, or some other t

[sqlite] Binding binary data in 3.0.4

2004-08-28 Thread SQLite
The docs for sqlite3_bind_blob() states that passing in SQLITE_STATIC mean that the blob data will be around until "SQLite has finished with it." But when exactly is this? For an INSERT/UPDATE, is it when the statement is executed, or the current transaction commmited, or some other time?