On 17 Oct 2012, at 11:59pm, Mike King <making1...@gmail.com> wrote:

> I'm using the latest System.Data.Sqlite with c# and .Net 4.
> 
> Is there any method of writing to a BLOB in byte array chunks rather
> than in one big lump? (I can see how using SQLiteDataReader GetBytes I
> can read a blob back in chunks).

SQLite proves the equivalent routines:

http://www.sqlite.org/c3ref/blob_open.html
http://www.sqlite.org/c3ref/blob_write.html
http://www.sqlite.org/c3ref/blob_close.html

I don't know whether System.Data.Sqlite can call them but the underlying engine 
supports what you want.

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to