다음을 통해 공유


setAsciiStream Method (SQLServerClob)

Returns a stream to be used to write ASCII characters to the CLOB starting at the given position.

public java.io.OutputStream setAsciiStream(long pos)

매개 변수

pos

The position at which to start writing to the CLOB object.

반환 값

The stream to which ASCII encoded characters can be written.

예외

java.sql.SQLException

주의

This setAsciiStream method is specified by the setAsciiStream method in the java.sql.Clob interface.

Character data in the CLOB is overwritten by the output stream starting at the given position and can overrun the initial length of the CLOB. Specifying a position+1 value will append ASCII characters. Specifying a position+2 or greater (or zero or less) value will cause a position error to be thrown.

참고

참조

SQLServerClob Class

개념

SQLServerClob Methods
SQLServerClob Members