Re: [sqlite] BLOBs and sqlite_exec

2004-10-15 Thread Will Leshner
On Oct 15, 2004, at 9:43 AM, john mcnicholas wrote: Sorry, I couldn't be of more help but perhaps this will lead you in the right direction. Actually, this is extremely helpful. I should have realized that I could use the binding interface to bind blob data to a SQL statement. I'll play with

RE: [sqlite] BLOBs and sqlite_exec

2004-10-15 Thread john mcnicholas
, I couldn't be of more help but perhaps this will lead you in the right direction. John -Original Message- From: Will Leshner [mailto:[EMAIL PROTECTED] Sent: Friday, October 15, 2004 11:05 AM To: [EMAIL PROTECTED] Subject: Re: [sqlite] BLOBs and sqlite_exec On Oct 15, 2004,

Re: [sqlite] BLOBs and sqlite_exec

2004-10-15 Thread Will Leshner
On Oct 15, 2004, at 7:50 AM, Will Leshner wrote: Sorry if this is terribly obvious, but I'm assuming that, in SQLite3, we can't use the sqlite_exec convenience API to store BLOBs, right? I see that if we go through the VM directly the API allows us to specify a data size, so that it doesn't

[sqlite] BLOBs and sqlite_exec

2004-10-15 Thread Will Leshner
Sorry if this is terribly obvious, but I'm assuming that, in SQLite3, we can't use the sqlite_exec convenience API to store BLOBs, right? I see that if we go through the VM directly the API allows us to specify a data size, so that it doesn't depend on NULL-terminated C strings. But