Neoview JDBC Type 4 Driver API Reference (R2.2, R2.3, R2.4, R2.5)

object.
long position(java.sql.Clob searchstr, long start)
Retrieves the character position at which the specified Clob object searchstr appears
in this Clob object.
long position(java.lang.String searchstr, long start)
Retrieves the character position at which the specified substring searchstr appears in
the SQL CLOB value represented by this Clob object.
java.io.OutputStream setAsciiStream(long pos)
Retrieves a stream to be used to write ASCII characters to the CLOB value that this
Clob object represents, starting at position pos.
java.io.Writer setCharacterStream(long pos)
Retrieves a stream to be used to write a stream of Unicode characters to the CLOB
value that this Clob object represents, at position pos.
int setString(long pos, java.lang.String str)
Writes the given Java String to the CLOB value that this Clob object designates at the
position pos.
int setString(long pos, java.lang.String str, int offset, int len)
Writes len characters of str, starting at character offset, to the CLOB value that this
Clob represents.
Methods inherited from class com.hp.t4jdbc.
HPT4Lob
length, truncate
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.sql.Clob
length, truncate
Method Detail
getAsciiStream
public java.io.InputStream getAsciiStream()
throws java.sql.SQLException
Retrieves the CLOB value designated by this Clob object as an ASCII stream.
Specified by:
getAsciiStream in interface java.sql.Clob
Returns:
a java.io.InputStream object containing the CLOB data
Throws:
java.sql.SQLException - if there is an error accessing the CLOB value
See Also: