Searched refs:SQLData (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLData.java31 * implementing the <code>SQLData</code> interface will be entered in the
35 * Typically, a <code>SQLData</code> implementation
50 * this information to implement the <code>SQLData.readSQL</code> and
51 * <code>SQLData.writeSQL</code> methods. The <code>readSQL</code> method
58 * An application programmer will not normally call <code>SQLData</code> methods
60 * are called internally by <code>SQLData</code> methods, not by application code.
64 public interface SQLData { interface
71 * <code>SQLData</code>.
H A DSQLOutput.java34 * <code>SQLData</code> is passed as an argument to an SQL statement, the
35 * JDBC driver calls the method <code>SQLData.getSQLType</code> to
39 * passes it to the method <code>SQLData.writeSQL</code>.
43 * to write data from the <code>SQLData</code> object to
269 * <code>SQLData</code> object.
270 * When the <code>SQLData</code> object is <code>null</code>, this
272 * Otherwise, it calls the <code>SQLData.writeSQL</code>
275 * The implementation of the method <code>SQLData.writeSQ</code>
290 void writeObject(SQLData x) throws SQLException;
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialStruct.java85 * <code>Class</code> object for the <code>SQLData</code> implementation
117 * given <code>SQLData</code> object, using the given type
120 * to which it is mapped. The <code>SQLData</code> object
123 * @param in an instance of the <code>SQLData</code> class
129 * <code>Class</code> object for the <code>SQLData</code> implementation
133 public SerialStruct(SQLData in, Map<String,Class<?>> map)
189 * <code>Class</code> object for the <code>SQLData</code> implementation
209 * serialized forms: <code>Struct</code>, <code>SQLData</code>,
219 * <code>Class</code> object for the <code>SQLData</code> implementation
230 } else if (attribs[i] instanceof SQLData) {
[all...]
H A DSQLInputImpl.java53 * object of a class implementing the interface <code>SQLData</code>,
54 * the JDBC driver calls the method <code>SQLData.getSQLType</code>
58 * stream to the method <code>SQLData.readSQL</code>, which in turn
61 * @see java.sql.SQLData
91 * <code>SQLData</code> (the Java class that defines how the UDT
102 * <code>SQLData</code> implementation.
112 * for the <code>SQLData</code> implementation that defines how
165 * to the UDT mapping as defined by a <code>SQLData</code>
192 * to the UDT mapping as defined by a <code>SQLData</code>
219 * to the UDT mapping as defined by a <code>SQLData</cod
[all...]
H A DSQLOutputImpl.java47 * class that implements <code>SQLData</code> for this UDT.
48 * If the value to be written is an instance of <code>SQLData</code>,
50 * and pass it to the method <code>SQLData.writeSQL</code>.
53 * to write data from the <code>SQLData</code> object to
68 * indicates the <code>SQLData</code> class whose
79 * which <code>SQLData.writeSQL</code> method to invoke.
91 * <code>Class</code> object for the <code>SQLData</code> implementation
121 * use by a <code>SQLData</code> object attempting to write the attribute
136 * use by a <code>SQLData</code> object attempting to write the attribute
150 * use by a <code>SQLData</cod
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetWriter.java579 SQLData obj = null;
581 obj = (SQLData)c.newInstance();
597 } else if (rsval instanceof SQLData) {
598 rsval = new SerialStruct((SQLData)rsval, map);
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java675 } else if (obj instanceof SQLData) {
676 obj = new SerialStruct((SQLData)obj, map);
2964 SQLData obj = null;
2966 obj = (SQLData)c.newInstance();
5715 SQLData obj = null;
5717 obj = (SQLData)c.newInstance();
7362 } else if (obj instanceof SQLData) {
7363 obj = new SerialStruct((SQLData)obj, map);
9553 * interface <code>SQLData</code>),
9554 * the JDBC driver should call the method <code>SQLData
[all...]

Completed in 526 milliseconds