Re: [sqlite] BLOB data examples?

2005-01-15 Thread Cory Nelson
You want to look at parameters, in particular the sqlite3_bind_* funcs. basically: sqlite3_prepare(..., "insert into foo values(?);", -1, , ...); sqlite3_bind_blob(stmt, 1, "bar", 3, SQLITE_TRANSIENT); sqlite3_step(stmt); On Sun, 16 Jan 2005 00:14:21 -0500, John Richard Moser <[EMAIL

Re: [sqlite] BLOB data examples?

2005-01-15 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 ok, screw it, I'm storing configuration files, policies, and POSIX ACLs, I'll figure out blobbing later; I've only mastered like 3 functions from SQLite's C API, so I've got other things to worry about. For now, base64 . . . John Richard Moser

[sqlite] BLOB data examples?

2005-01-15 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The documentation at [1] is confusing me. Does anyone have a URI or such where I could see examples of code to set and read BLOB data? I feel I may be looking at this as too simple a task. . . [1] http://sqlite.org/capi3ref.html - -- All content