Length Property (SQLiteBlob)
Gets the size of the
SQLiteBlob.
public override long Length {get;}
'Declaration
Public Overrides ReadOnly Property Length As Long
Property Value
The size of the
SQLiteBlob in bytes.
SQLiteDataReader pictureReader = myCommand.ExecuteReader();
pictureReader.Read();
SQLiteBlob pictureBlob = pictureReader.GetSQLiteBlob(pictureReader.GetOrdinal("Picture"));
if (pictureBlob.Length > 100)
pictureBlob.SetLength(100);
Dim pictureReader As SQLiteDataReader = myCommand.ExecuteReader
pictureReader.Read()
Dim pictureBlob As SQLiteBlob = pictureReader.GetSQLiteBlob(pictureReader.GetOrdinal("Picture"))
If (pictureBlob.Length > 100) Then
pictureBlob.SetLength(CLng(100))
End If