Use Close to free resources taken by a SQLiteBlob instance, i.e. after performing large data transfer. After closing SQLiteBlob object call of any method of this object will throw an System.ObjectDisposedException.
This method is actually the same as Dispose() method.
SQLiteDataReader pictureReader = myCommand.ExecuteReader(); pictureReader.Read(); SQLiteBlob pictureBlob = pictureReader.GetSQLiteBlob(pictureReader.GetOrdinal("Picture")); ... //use pictureBlob ... pictureBlob.Close();
Dim pictureReader As SQLiteDataReader = myCommand.ExecuteReader pictureReader.Read() Dim pictureBlob As SQLiteBlob = pictureReader.GetSQLiteBlob(pictureReader.GetOrdinal("Picture")) ... 'use pictureBlob ... pictureBlob.Close()