Lines Matching refs:SQLXML

40  * By default drivers implement an SQLXML object as
43 * An SQLXML object is valid for the duration of the transaction in which it was created.
45 * The SQLXML interface provides methods for accessing the XML value
55 * The XML value of the SQLXML instance may be obtained as a BinaryStream using
57 * SQLXML sqlxml = resultSet.getSQLXML(column);
167 * Reading and writing XML values to or from an SQLXML object can happen at most once.
182 * All methods on the <code>SQLXML</code> interface must be fully implemented if the
191 public interface SQLXML
210 * Retrieves the XML value designated by this SQLXML instance as a stream.
213 * when the designated column of the ResultSet has a type java.sql.Types of SQLXML.
228 * Retrieves a stream that can be used to write the XML value that this SQLXML instance represents.
232 * when the designated column of the ResultSet has a type java.sql.Types of SQLXML.
247 * Retrieves the XML value designated by this SQLXML instance as a java.io.Reader object.
254 * when the designated column of the ResultSet has a type java.sql.Types of SQLXML.
271 * Retrieves a stream to be used to write the XML value that this SQLXML instance represents.
278 * when the designated column of the ResultSet has a type java.sql.Types of SQLXML.
295 * Returns a string representation of the XML value designated by this SQLXML instance.
302 * when the designated column of the ResultSet has a type java.sql.Types of SQLXML.
307 * @return a string representation of the XML value designated by this SQLXML instance.
319 * Sets the XML value designated by this SQLXML instance to the given String representation.
326 * when the designated column of the ResultSet has a type java.sql.Types of SQLXML.
343 * Returns a Source for reading the XML value designated by this SQLXML instance.
385 * Returns a Result for setting the XML value designated by this SQLXML instance.