Package com.impossibl.jdbc.spy
Class SQLXMLRelay
- java.lang.Object
-
- com.impossibl.jdbc.spy.SQLXMLRelay
-
-
Constructor Summary
Constructors Constructor Description SQLXMLRelay(java.sql.SQLXML target, com.impossibl.jdbc.spy.SQLXMLListener listener)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
free()
java.io.InputStream
getBinaryStream()
java.io.Reader
getCharacterStream()
<T extends javax.xml.transform.Source>
TgetSource(java.lang.Class<T> sourceClass)
java.lang.String
getString()
java.sql.SQLXML
getTarget()
java.io.OutputStream
setBinaryStream()
java.io.Writer
setCharacterStream()
<T extends javax.xml.transform.Result>
TsetResult(java.lang.Class<T> resultClass)
void
setString(java.lang.String value)
-
-
-
Method Detail
-
getTarget
public java.sql.SQLXML getTarget()
-
free
public void free() throws java.sql.SQLException
- Specified by:
free
in interfacejava.sql.SQLXML
- Throws:
java.sql.SQLException
-
setString
public void setString(java.lang.String value) throws java.sql.SQLException
- Specified by:
setString
in interfacejava.sql.SQLXML
- Throws:
java.sql.SQLException
-
getCharacterStream
public java.io.Reader getCharacterStream() throws java.sql.SQLException
- Specified by:
getCharacterStream
in interfacejava.sql.SQLXML
- Throws:
java.sql.SQLException
-
getString
public java.lang.String getString() throws java.sql.SQLException
- Specified by:
getString
in interfacejava.sql.SQLXML
- Throws:
java.sql.SQLException
-
setCharacterStream
public java.io.Writer setCharacterStream() throws java.sql.SQLException
- Specified by:
setCharacterStream
in interfacejava.sql.SQLXML
- Throws:
java.sql.SQLException
-
getBinaryStream
public java.io.InputStream getBinaryStream() throws java.sql.SQLException
- Specified by:
getBinaryStream
in interfacejava.sql.SQLXML
- Throws:
java.sql.SQLException
-
setBinaryStream
public java.io.OutputStream setBinaryStream() throws java.sql.SQLException
- Specified by:
setBinaryStream
in interfacejava.sql.SQLXML
- Throws:
java.sql.SQLException
-
getSource
public <T extends javax.xml.transform.Source> T getSource(java.lang.Class<T> sourceClass) throws java.sql.SQLException
- Specified by:
getSource
in interfacejava.sql.SQLXML
- Throws:
java.sql.SQLException
-
setResult
public <T extends javax.xml.transform.Result> T setResult(java.lang.Class<T> resultClass) throws java.sql.SQLException
- Specified by:
setResult
in interfacejava.sql.SQLXML
- Throws:
java.sql.SQLException
-
-