- java.lang.Object
-
- org.hsqldb.jdbc.JDBCClobClient
-
- All Implemented Interfaces:
java.sql.Clob
public class JDBCClobClient extends java.lang.Object implements java.sql.Clob
A wrapper for HSQLDB ClobData objects. Instances of this class are returned by calls to ResultSet methods.- Since:
- HSQLDB 1.9.0
- Author:
- Fred Toussi (fredt@users dot sourceforge.net)
-
-
Constructor Summary
Constructors Constructor Description JDBCClobClient(org.hsqldb.SessionInterface session, org.hsqldb.types.ClobDataID clob)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearUpdates()
void
free()
This method frees theClob
object and releases the resources that it holds.java.io.InputStream
getAsciiStream()
Retrieves theCLOB
value designated by thisClob
object as an ascii stream.java.io.Reader
getCharacterStream()
Retrieves theCLOB
value designated by thisClob
object as ajava.io.Reader
object (or as a stream of characters).java.io.Reader
getCharacterStream(long pos, long length)
Returns aReader
object that contains a partialClob
value, starting with the character specified by pos, which is length characters in length.org.hsqldb.types.ClobDataID
getClob()
java.lang.String
getSubString(long pos, int length)
Retrieves a copy of the specified substring in theCLOB
value designated by thisClob
object.boolean
isClosed()
long
length()
Retrieves the number of characters in theCLOB
value designated by thisClob
object.long
position(java.lang.String searchstr, long start)
Retrieves the character position at which the specified substringsearchstr
appears in the SQLCLOB
value represented by thisClob
object.long
position(java.sql.Clob searchstr, long start)
Retrieves the character position at which the specifiedClob
objectsearchstr
appears in thisClob
object.java.io.OutputStream
setAsciiStream(long pos)
Retrieves a stream to be used to write Ascii characters to theCLOB
value that thisClob
object represents, starting at positionpos
.java.io.Writer
setCharacterStream(long pos)
Retrieves a stream to be used to write a stream of Unicode characters to theCLOB
value that thisClob
object represents, at positionpos
.int
setString(long pos, java.lang.String str)
Writes the given JavaString
to theCLOB
value that thisClob
object designates at the positionpos
.int
setString(long pos, java.lang.String str, int offset, int len)
Writeslen
characters ofstr
, starting at characteroffset
, to theCLOB
value that thisClob
represents.void
setWritable(JDBCResultSet result, int index)
void
truncate(long len)
Truncates theCLOB
value that thisClob
designates to have a length oflen
characters.
-
-
-
Method Detail
-
getAsciiStream
public java.io.InputStream getAsciiStream() throws java.sql.SQLException
Retrieves theCLOB
value designated by thisClob
object as an ascii stream. The ascii stream consists of the low ordre bytes of UTF-16 characters in the clob. The question mark character is returnd for UTF-16 characters beyond the range of 8-bit ASCII.- Specified by:
getAsciiStream
in interfacejava.sql.Clob
- Returns:
- a
java.io.InputStream
object containing theCLOB
data - Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
getCharacterStream
public java.io.Reader getCharacterStream() throws java.sql.SQLException
Retrieves theCLOB
value designated by thisClob
object as ajava.io.Reader
object (or as a stream of characters).- Specified by:
getCharacterStream
in interfacejava.sql.Clob
- Returns:
- a
java.io.Reader
object containing theCLOB
data - Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
getSubString
public java.lang.String getSubString(long pos, int length) throws java.sql.SQLException
Retrieves a copy of the specified substring in theCLOB
value designated by thisClob
object.- Specified by:
getSubString
in interfacejava.sql.Clob
- Parameters:
pos
- the first character of the substring to be extracted. The first character is at position 1.length
- the number of consecutive characters to be copied- Returns:
- a
String
that is the specified substring in theCLOB
value designated by thisClob
object - Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
length
public long length() throws java.sql.SQLException
Retrieves the number of characters in theCLOB
value designated by thisClob
object.- Specified by:
length
in interfacejava.sql.Clob
- Returns:
- length of the
CLOB
in characters - Throws:
java.sql.SQLException
- if there is an error accessing the length of theCLOB
value
-
position
public long position(java.lang.String searchstr, long start) throws java.sql.SQLException
Retrieves the character position at which the specified substringsearchstr
appears in the SQLCLOB
value represented by thisClob
object.- Specified by:
position
in interfacejava.sql.Clob
- Parameters:
searchstr
- the substring for which to searchstart
- the position at which to begin searching; the first position is 1- Returns:
- the position at which the substring appears or -1 if it is not present; the first position is 1
- Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
position
public long position(java.sql.Clob searchstr, long start) throws java.sql.SQLException
Retrieves the character position at which the specifiedClob
objectsearchstr
appears in thisClob
object.- Specified by:
position
in interfacejava.sql.Clob
- Parameters:
searchstr
- theClob
object for which to searchstart
- the position at which to begin searching; the first position is 1- Returns:
- the position at which the
Clob
object appears or -1 if it is not present; the first position is 1 - Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
setAsciiStream
public java.io.OutputStream setAsciiStream(long pos) throws java.sql.SQLException
Retrieves a stream to be used to write Ascii characters to theCLOB
value that thisClob
object represents, starting at positionpos
. The bytes written to the OutputStream are stored verbatim in the clob as the low order bytes of UTF-16 characters.- Specified by:
setAsciiStream
in interfacejava.sql.Clob
- Parameters:
pos
- the position at which to start writing to thisCLOB
object- Returns:
- the stream to which ASCII encoded characters can be written
- Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
setCharacterStream
public java.io.Writer setCharacterStream(long pos) throws java.sql.SQLException
Retrieves a stream to be used to write a stream of Unicode characters to theCLOB
value that thisClob
object represents, at positionpos
.- Specified by:
setCharacterStream
in interfacejava.sql.Clob
- Parameters:
pos
- the position at which to start writing to theCLOB
value- Returns:
- a stream to which Unicode encoded characters can be written
- Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
setString
public int setString(long pos, java.lang.String str) throws java.sql.SQLException
Writes the given JavaString
to theCLOB
value that thisClob
object designates at the positionpos
.- Specified by:
setString
in interfacejava.sql.Clob
- Parameters:
pos
- the position at which to start writing to theCLOB
value that thisClob
object representsstr
- the string to be written to theCLOB
value that thisClob
designates- Returns:
- the number of characters written
- Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
setString
public int setString(long pos, java.lang.String str, int offset, int len) throws java.sql.SQLException
Writeslen
characters ofstr
, starting at characteroffset
, to theCLOB
value that thisClob
represents.- Specified by:
setString
in interfacejava.sql.Clob
- Parameters:
pos
- the position at which to start writing to thisCLOB
objectstr
- the string to be written to theCLOB
value that thisClob
object representsoffset
- the offset intostr
to start reading the characters to be writtenlen
- the number of characters to be written- Returns:
- the number of characters written
- Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
truncate
public void truncate(long len) throws java.sql.SQLException
Truncates theCLOB
value that thisClob
designates to have a length oflen
characters.- Specified by:
truncate
in interfacejava.sql.Clob
- Parameters:
len
- the length, in bytes, to which theCLOB
value should be truncated- Throws:
java.sql.SQLException
- if there is an error accessing theCLOB
value
-
free
public void free() throws java.sql.SQLException
This method frees theClob
object and releases the resources that it holds. The object is invalid once thefree
method is called.After
free
has been called, any attempt to invoke a method other thanfree
will result in aSQLException
being thrown. Iffree
is called multiple times, the subsequent calls tofree
are treated as a no-op.- Specified by:
free
in interfacejava.sql.Clob
- Throws:
java.sql.SQLException
- if an error occurs releasing the Clob's resourcesjava.sql.SQLFeatureNotSupportedException
- if the JDBC driver does not support this method- Since:
- JDK 1.6, HSQLDB 2.0
-
getCharacterStream
public java.io.Reader getCharacterStream(long pos, long length) throws java.sql.SQLException
Returns aReader
object that contains a partialClob
value, starting with the character specified by pos, which is length characters in length.- Specified by:
getCharacterStream
in interfacejava.sql.Clob
- Parameters:
pos
- the offset to the first character of the partial value to be retrieved. The first character in the Clob is at position 1.length
- the length in characters of the partial value to be retrieved.- Returns:
Reader
through which the partialClob
value can be read.- Throws:
java.sql.SQLException
- if pos is less than 1 or if pos is greater than the number of characters in theClob
or if pos + length is greater than the number of characters in theClob
java.sql.SQLFeatureNotSupportedException
- if the JDBC driver does not support this method- Since:
- JDK 1.6, HSQLDB 2.0
-
getClob
public org.hsqldb.types.ClobDataID getClob()
-
isClosed
public boolean isClosed()
-
setWritable
public void setWritable(JDBCResultSet result, int index)
-
clearUpdates
public void clearUpdates()
-
-