dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlBlob Class / Length Property
Example

In This Topic
    Length Property (MySqlBlob)
    In This Topic
    Gets the size of the MySqlBlob.
    Syntax
    'Declaration
     
    Public Overrides ReadOnly Property Length As Long
    public override long Length {get;}

    Property Value

    The size of the MySqlBlob in bytes.
    Remarks
    The size of the MySqlBlob is always returned in bytes for all data types.
    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