dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleLob Class / Write Method / Write(String) Method
The string to write.

In This Topic
    Write(String) Method
    In This Topic
    Writes a string to the current OracleLob stream, and advances the current position within this stream by the number of bytes written.
    Syntax
    'Declaration
     
    Public Overloads Sub Write( _
       ByVal value As String _
    ) 
    public void Write( 
       string value
    )

    Parameters

    value
    The string to write.
    Remarks
    If the write operation is successful, the position within the stream advances by the number of bytes written.
    Example
    In the example a byte array is filled and written to a newly created OracleLob instance.
    See Also