Re: [sqlite] Incremental BLOB IO

2017-03-14 Thread Simon Slavin
Plenty of examples on the web using the C interface, and the SQLite API is clear enough that people can figure out how to use it. But you can’t use those lines of code with System.Data.Sqlite and C#. I think the OP wants an example of using the blob-editing functions though

Re: [sqlite] Incremental BLOB IO

2017-03-14 Thread Keith Medcalf
f Of Mike King > Sent: Tuesday, 14 March, 2017 17:34 > To: SQLite mailing list > Subject: [sqlite] Incremental BLOB IO > > Hi, > > I'm trying to understand incremental BLOB IO using the latest > System.Data.Sqlite and C#. > > I've got some test code working where I

Re: [sqlite] Incremental BLOB IO

2017-03-14 Thread Darko Volaric
I haven't got an example but how about inserting the record and then updating the blob in question? On Wed, Mar 15, 2017 at 12:33 AM, Mike King wrote: > Hi, > > I'm trying to understand incremental BLOB IO using the latest > System.Data.Sqlite and C#. > > I've got some

[sqlite] Incremental BLOB IO

2017-03-14 Thread Mike King
Hi, I'm trying to understand incremental BLOB IO using the latest System.Data.Sqlite and C#. I've got some test code working where I can execute a query and using a data reader get a SQLiteBlob object and read the blob back. However, I'm not clear as to how I can use incremental IO if I'm doing