dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlBlob Class / SetLength Method
The size of the PgSqlBlob in bytes.
Example

In This Topic
    SetLength Method (PgSqlBlob)
    In This Topic
    Sets length for PgSqlBlob value.
    Syntax
    'Declaration
     
    Public Overrides Sub SetLength( _
       ByVal len As Long _
    ) 
    public override void SetLength( 
       long len
    )

    Parameters

    len
    The size of the PgSqlBlob in bytes.
    Remarks
    If the given value is less than the current length of the stream, the stream is truncated. If the given value is larger than the current length of the stream, the stream is expanded. If the stream is expanded, the contents of the stream between the old and the new length are undefined.
    Example
    PgSqlDataReader pictureReader = myCommand.ExecuteReader();
    pictureReader.Read();
    PgSqlBlob pictureBlob = pictureReader.GetPgSqlBlob(pictureReader.GetOrdinal("Picture"));
    if (pictureBlob.Length > 100)
      pictureBlob.SetLength(100);
    Dim pictureReader As PgSqlDataReader = myCommand.ExecuteReader
    pictureReader.Read()
    Dim pictureBlob As PgSqlBlob = pictureReader.GetPgSqlBlob(pictureReader.GetOrdinal("Picture"))
    If (pictureBlob.Length > 100) Then
      pictureBlob.SetLength(CLng(100))
    End If
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also