dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteBlob Class / Close Method
Example

In This Topic
    Close Method (SQLiteBlob)
    In This Topic
    Closes the current stream and releases any resources associated with it.
    Syntax
    'Declaration
     
    Public Overrides Sub Close() 
    public override void Close()
    Remarks

    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.

    Example
    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()
    See Also