dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlLargeObject Class / Write Method
The array of bytes to copy data from.
The zero-based byte offset in buffer at which to begin copying bytes to the large object.
The number of bytes to be written to the large object.

In This Topic
    Write Method (PgSqlLargeObject)
    In This Topic
    Writes an array of bytes to PgSqlLargeObject.
    Syntax
    'Declaration
     
    Public Overrides Sub Write( _
       ByVal buffer() As Byte, _
       ByVal offset As Integer, _
       ByVal count As Integer _
    ) 
    public override void Write( 
       byte[] buffer,
       int offset,
       int count
    )

    Parameters

    buffer
    The array of bytes to copy data from.
    offset
    The zero-based byte offset in buffer at which to begin copying bytes to the large object.
    count
    The number of bytes to be written to the large object.
    See Also