On this page
Sets length for
SQLiteBlob value.
Syntax
|
|---|
'Declaration
Public Overrides Sub SetLength( _
ByVal As Long _
) |
|
|---|
public override void SetLength(
long
) |
Parameters
- len
- The size of the SQLiteBlob in bytes.
Example
|
|---|
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 |
See Also