Write Method (PgSqlLargeObject)
In This Topic
Writes an array of bytes to
PgSqlLargeObject.
Syntax
'Declaration
Public Overrides Sub Write( _
ByVal () As Byte, _
ByVal As Integer, _
ByVal As Integer _
)
public override void Write(
byte[] ,
int ,
int
)
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