Class JDBCClobClient
java.lang.Object
org.hsqldb.jdbc.JDBCClobClient
- All Implemented Interfaces:
Clob
-
Constructor Summary
ConstructorsConstructorDescriptionJDBCClobClient(org.hsqldb.SessionInterface session, org.hsqldb.types.ClobDataID clob) -
Method Summary
Modifier and TypeMethodDescriptionvoidvoidfree()This method frees theClobobject and releases the resources that it holds.Retrieves theCLOBvalue designated by thisClobobject as an ascii stream.Retrieves theCLOBvalue designated by thisClobobject as ajava.io.Readerobject (or as a stream of characters).getCharacterStream(long pos, long length) Returns aReaderobject that contains a partialClobvalue, starting with the character specified by pos, which is length characters in length.org.hsqldb.types.ClobDataIDgetClob()getSubString(long pos, int length) Retrieves a copy of the specified substring in theCLOBvalue designated by thisClobobject.booleanisClosed()longlength()Retrieves the number of characters in theCLOBvalue designated by thisClobobject.longRetrieves the character position at which the specified substringsearchstrappears in the SQLCLOBvalue represented by thisClobobject.longRetrieves the character position at which the specifiedClobobjectsearchstrappears in thisClobobject.setAsciiStream(long pos) Retrieves a stream to be used to write Ascii characters to theCLOBvalue that thisClobobject represents, starting at positionpos.setCharacterStream(long pos) Retrieves a stream to be used to write a stream of Unicode characters to theCLOBvalue that thisClobobject represents, at positionpos.intWrites the given JavaStringto theCLOBvalue that thisClobobject designates at the positionpos.intWriteslencharacters ofstr, starting at characteroffset, to theCLOBvalue that thisClobrepresents.voidsetWritable(JDBCResultSet result, int index) voidtruncate(long len) Truncates theCLOBvalue that thisClobdesignates to have a length oflencharacters.
-
Constructor Details
-
JDBCClobClient
public JDBCClobClient(org.hsqldb.SessionInterface session, org.hsqldb.types.ClobDataID clob)
-
-
Method Details
-
getAsciiStream
Retrieves theCLOBvalue designated by thisClobobject 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:
getAsciiStreamin interfaceClob- Returns:
- a
java.io.InputStreamobject containing theCLOBdata - Throws:
SQLException- if there is an error accessing theCLOBvalue
-
getCharacterStream
Retrieves theCLOBvalue designated by thisClobobject as ajava.io.Readerobject (or as a stream of characters).- Specified by:
getCharacterStreamin interfaceClob- Returns:
- a
java.io.Readerobject containing theCLOBdata - Throws:
SQLException- if there is an error accessing theCLOBvalue
-
getSubString
Retrieves a copy of the specified substring in theCLOBvalue designated by thisClobobject.- Specified by:
getSubStringin interfaceClob- 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
Stringthat is the specified substring in theCLOBvalue designated by thisClobobject - Throws:
SQLException- if there is an error accessing theCLOBvalue
-
length
Retrieves the number of characters in theCLOBvalue designated by thisClobobject.- Specified by:
lengthin interfaceClob- Returns:
- length of the
CLOBin characters - Throws:
SQLException- if there is an error accessing the length of theCLOBvalue
-
position
Retrieves the character position at which the specified substringsearchstrappears in the SQLCLOBvalue represented by thisClobobject.- Specified by:
positionin interfaceClob- 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:
SQLException- if there is an error accessing theCLOBvalue
-
position
Retrieves the character position at which the specifiedClobobjectsearchstrappears in thisClobobject.- Specified by:
positionin interfaceClob- Parameters:
searchstr- theClobobject for which to searchstart- the position at which to begin searching; the first position is 1- Returns:
- the position at which the
Clobobject appears or -1 if it is not present; the first position is 1 - Throws:
SQLException- if there is an error accessing theCLOBvalue
-
setAsciiStream
Retrieves a stream to be used to write Ascii characters to theCLOBvalue that thisClobobject 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:
setAsciiStreamin interfaceClob- Parameters:
pos- the position at which to start writing to thisCLOBobject- Returns:
- the stream to which ASCII encoded characters can be written
- Throws:
SQLException- if there is an error accessing theCLOBvalue
-
setCharacterStream
Retrieves a stream to be used to write a stream of Unicode characters to theCLOBvalue that thisClobobject represents, at positionpos.- Specified by:
setCharacterStreamin interfaceClob- Parameters:
pos- the position at which to start writing to theCLOBvalue- Returns:
- a stream to which Unicode encoded characters can be written
- Throws:
SQLException- if there is an error accessing theCLOBvalue
-
setString
Writes the given JavaStringto theCLOBvalue that thisClobobject designates at the positionpos.- Specified by:
setStringin interfaceClob- Parameters:
pos- the position at which to start writing to theCLOBvalue that thisClobobject representsstr- the string to be written to theCLOBvalue that thisClobdesignates- Returns:
- the number of characters written
- Throws:
SQLException- if there is an error accessing theCLOBvalue
-
setString
Writeslencharacters ofstr, starting at characteroffset, to theCLOBvalue that thisClobrepresents.- Specified by:
setStringin interfaceClob- Parameters:
pos- the position at which to start writing to thisCLOBobjectstr- the string to be written to theCLOBvalue that thisClobobject representsoffset- the offset intostrto start reading the characters to be writtenlen- the number of characters to be written- Returns:
- the number of characters written
- Throws:
SQLException- if there is an error accessing theCLOBvalue
-
truncate
Truncates theCLOBvalue that thisClobdesignates to have a length oflencharacters.- Specified by:
truncatein interfaceClob- Parameters:
len- the length, in bytes, to which theCLOBvalue should be truncated- Throws:
SQLException- if there is an error accessing theCLOBvalue
-
free
This method frees theClobobject and releases the resources that it holds. The object is invalid once thefreemethod is called.After
freehas been called, any attempt to invoke a method other thanfreewill result in aSQLExceptionbeing thrown. Iffreeis called multiple times, the subsequent calls tofreeare treated as a no-op.- Specified by:
freein interfaceClob- Throws:
SQLException- if an error occurs releasing the Clob's resourcesSQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.6, HSQLDB 2.0
-
getCharacterStream
Returns aReaderobject that contains a partialClobvalue, starting with the character specified by pos, which is length characters in length.- Specified by:
getCharacterStreamin interfaceClob- 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:
Readerthrough which the partialClobvalue can be read.- Throws:
SQLException- if pos is less than 1 or if pos is greater than the number of characters in theClobor if pos + length is greater than the number of characters in theClobSQLFeatureNotSupportedException- 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
-
clearUpdates
public void clearUpdates()
-