API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.sql. SQLXML View Source
Author(s)
Since
1.6
Version
Serial
Hierarchy
 SQLXML
Subinterfaces
Description
public interface SQLXML
  The mapping in the JavaTM programming language for the SQL XML type.
Methods
Hide/Show inherited methods
public void free () throws SQLException
  This method closes this object and releases the resources that it held.
public InputStream getBinaryStream () throws SQLException
  Retrieves the XML value designated by this SQLXML instance as a stream.
public Reader getCharacterStream () throws SQLException
  Retrieves the XML value designated by this SQLXML instance as a java.io.Reader object.
public T getSource (Class< T> sourceClass) throws SQLException
  Returns a Source for reading the XML value designated by this SQLXML instance.
public String getString () throws SQLException
  Returns a string representation of the XML value designated by this SQLXML instance.
public OutputStream setBinaryStream () throws SQLException
  Retrieves a stream that can be used to write the XML value that this SQLXML instance represents.
public Writer setCharacterStream () throws SQLException
  Retrieves a stream to be used to write the XML value that this SQLXML instance represents.
public T setResult (Class< T> resultClass) throws SQLException
  Returns a Result for setting the XML value designated by this SQLXML instance.
public void setString (String value) throws SQLException
  Sets the XML value designated by this SQLXML instance to the given String representation.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar