In This Topic
Sets length for
MySqlBlob value.
Syntax
|
|---|
'Declaration
Public Overrides Sub SetLength( _
ByVal As Long _
) |
|
|---|
public override void SetLength(
long
) |
Parameters
- len
- The size of the MySqlBlob in bytes.
Example
|
|---|
MySqlDataReader pictureReader = myCommand.ExecuteReader();
pictureReader.Read();
MySqlBlob pictureBlob = pictureReader.GetMySqlBlob(pictureReader.GetOrdinal("Picture"));
if (pictureBlob.Length > 100)
pictureBlob.SetLength(100); |
|
|---|
Dim pictureReader As MySqlDataReader = myCommand.ExecuteReader
pictureReader.Read()
Dim pictureBlob As MySqlBlob = pictureReader.GetMySqlBlob(pictureReader.GetOrdinal("Picture"))
If (pictureBlob.Length > 100) Then
pictureBlob.SetLength(CLng(100))
End If |
See Also