Writes a sequence of bytes to the current
SQLiteBlob stream, and advances the current position within this stream by the number of bytes written.
In the example a byte array is filled and written to a newly created
SQLiteBlob instance.
byte[] myByteArray = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
SQLiteBlob myBlob = new SQLiteBlob();
myBlob.Write(myByteArray,0,10);
Dim myByteArray() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
Dim myBlob As SQLiteBlob = New SQLiteBlob
myBlob.Write(myByteArray, 0, 10)