Searched refs:Clob (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/java/sql/
H A DNClob.java28 import java.sql.Clob;
36 * <P>The <code>NClob</code> interface extends the <code>Clob</code> interface
41 * <code>NCLOB</code> value. A <code>NClob</code> object, just like a <code>Clob</code> object, is valid for the duration
55 public interface NClob extends Clob { }
H A DClob.java36 * By default drivers implement a <code>Clob</code> object using an SQL
37 * <code>locator(CLOB)</code>, which means that a <code>Clob</code> object
39 * the data itself. A <code>Clob</code> object is valid for the duration
41 * <P>The <code>Clob</code> interface provides methods for getting the
52 * All methods on the <code>Clob</code> interface must be fully implemented if the
58 public interface Clob { interface
63 * designated by this <code>Clob</code> object.
77 * designated by this <code>Clob</code> object.
87 * the <code>CLOB</code> value designated by this <code>Clob</code> object
98 * Retrieves the <code>CLOB</code> value designated by this <code>Clob</cod
[all...]
H A DSQLInput.java312 * <code>Clob</code> object in the Java programming language.
314 * @return a <code>Clob</code> object representing data of the SQL <code>CLOB</code> value
322 Clob readClob() throws SQLException;
H A DSQLOutput.java320 * @param x a <code>Clob</code> object representing data of an SQL
328 void writeClob(Clob x) throws SQLException;
H A DCallableStatement.java465 * <code>java.sql.Clob</code> object in the Java programming language.
468 * @return the parameter value as a <code>Clob</code> object in the
478 Clob getClob (int parameterIndex) throws SQLException;
1093 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, <code>NClob</code>,
1167 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, <code>NClob</code>,
1635 * <code>java.sql.Clob</code> object in the Java programming language.
1637 * @return the parameter value as a <code>Clob</code> object in the
1647 Clob getClob (String parameterName) throws SQLException;
2174 * Sets the designated parameter to the given <code>java.sql.Clob</code> object.
2179 * @param x a <code>Clob</cod
[all...]
H A DConnection.java1040 * Constructs an object that implements the <code>Clob</code> interface. The object
1043 * the <code>Clob</code> interface may be used to add data to the <code>Clob</code>.
1044 * @return An object that implements the <code>Clob</code> interface
1046 * <code>Clob</code> interface can not be constructed, this method is
1053 Clob createClob() throws SQLException;
H A DPreparedStatement.java430 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, <code>NClob</code>,
556 * Sets the designated parameter to the given <code>java.sql.Clob</code> object.
561 * @param x a <code>Clob</code> object that maps an SQL <code>CLOB</code> value
568 void setClob (int parameterIndex, Clob x) throws SQLException;
934 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, <code>NClob</code>,
H A DResultSet.java185 * <code>Clob</code> or <code>NClob</code> objects created by the <code>ResultSet</code>. <code>Blob</code>,
186 * <code>Clob</code> or <code>NClob</code> objects remain valid for at least the duration of the
2487 * of this <code>ResultSet</code> object as a <code>Clob</code> object
2491 * @return a <code>Clob</code> object representing the SQL
2500 Clob getClob(int columnIndex) throws SQLException;
2579 * of this <code>ResultSet</code> object as a <code>Clob</code> object
2583 * @return a <code>Clob</code> object representing the SQL <code>CLOB</code>
2592 Clob getClob(String columnLabel) throws SQLException;
2870 * Updates the designated column with a <code>java.sql.Clob</code> value.
2886 void updateClob(int columnIndex, java.sql.Clob
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialClob.java36 * an instance from a <code>Clob</code> object. Note that the <code>Clob</code>
48 public class SerialClob implements Clob, Serializable, Cloneable {
60 * Internal Clob representation if SerialClob is initialized with a
61 * Clob. Null if SerialClob is initialized with a char[].
63 private final Clob clob;
87 * objects to establish a serialized <code>Clob</code> object without touching
90 * @param ch the char array representing the <code>Clob</code> object to be
112 * version of the given <code>Clob</code> object.
115 * data from the <code>Clob</cod
[all...]
H A DSerialStruct.java210 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, and
234 } else if (attribs[i] instanceof Clob) {
235 attribs[i] = new SerialClob((Clob)attribs[i]);
H A DSQLInputImpl.java683 * <code>SQLInputImpl</code> object as a <code>Clob</code> object
691 * @return a <code>Clob</code> object representing the SQL
698 public Clob readClob() throws SQLException {
700 Clob attrib = (Clob)getNextAttribute();
779 * <code>Clob</code> object in the Java programming language.
H A DSerialArray.java130 * <code>Clob</code>, <code>DATALINK</code>, or
177 elements[i] = new SerialClob((Clob)elements[i]);
276 elements[i] = new SerialClob((Clob)elements[i]);
H A DSQLOutputImpl.java479 * Writes a <code>Clob</code> object in the Java programming language
489 public void writeClob(Clob x) throws SQLException {
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSet.java1213 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, <code>NClob</code>,
1253 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, <code>NClob</code>,
1346 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, <code>NClob</code>,
1383 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, <code>NClob</code>,
1546 * with the given <code>Clob</code> value. The driver will convert this
1547 * to the <code>CLOB</code> value that the <code>Clob</code> object
1554 void setClob (int i, Clob x) throws SQLException;
1627 * Sets the designated parameter to the given <code>java.sql.Clob</code> object.
1632 * @param x a <code>Clob</code> object that maps an SQL <code>CLOB</code> value
1639 void setClob (String parameterName, Clob
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java3800 * <code>CachedRowSetImpl</code> object as a <code>Clob</code> object
3806 * @return a <code>Clob</code> object representing an SQL <code>CLOB</code> value
3813 public Clob getClob(int columnIndex) throws SQLException {
3898 * <code>CachedRowSetImpl</code> object as a <code>Clob</code> object
3903 * @return a <code>Clob</code> object representing an SQL
3911 public Clob getClob(String colName) throws SQLException {
4287 * @param c the new column <code>Clob value
4293 public void updateClob(int columnIndex, Clob c) throws SQLException {
4313 * @param c the new column <code>Clob</code>value
4319 public void updateClob(String columnName, Clob
[all...]
H A DCachedRowSetWriter.java601 } else if (rsval instanceof Clob) {
602 rsval = new SerialClob((Clob)rsval);
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java893 className = java.sql.Clob.class.getName();
H A DBaseRowSet.java142 * NOTE: Setting <code>Array</code>, <code>Clob</code>, <code>Blob</code> and
2529 * implementing <code>Ref</code>, <code>Blob</code>, <code>Clob</code>,
2682 * implementing <code>Ref</code>, <code>Blob</code>, <code>Clob</code>,
2824 * Sets the designated parameter to the given <code>Clob</code> object in
2827 * <code>Clob</code> is represented as a <code>SerialClob</code> to ensure
2843 * include the <code>Clob</code> object set for placeholder parameter number
2853 * @param x a <code>Clob</code> object representing an SQL
2856 * bounds or the <code>Clob</code> is null
2860 public void setClob (int parameterIndex, Clob x) throws SQLException {
3158 * <code>Clob</cod
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java3466 * <code>JoinRowSetImpl</code> object as a <code>Clob</code> object
3472 * @return a <code>Clob</code> object representing an SQL <code>CLOB</code> value
3478 public Clob getClob(int columnIndex) throws SQLException {
3540 * <code>JoinRowSetImpl</code> object as a <code>Clob</code> object
3545 * @return a <code>Clob</code> object representing an SQL
3552 public Clob getClob(String columnName) throws SQLException {
3846 * <code>Clob</code> object.
3860 * @param c the <code>java.sql.Clob</code> object that will be set as
3867 public void updateClob(int columnIndex, Clob c) throws SQLException {
3874 * <code>Clob</cod
[all...]
H A DCachedRowSetImpl.java679 } else if (obj instanceof Clob) {
680 obj = new SerialClob((Clob)obj);
5818 * <code>CachedRowSetImpl</code> object as a <code>Clob</code> object
5824 * @return a <code>Clob</code> object representing an SQL <code>CLOB</code> value
5831 public Clob getClob(int columnIndex) throws SQLException {
5832 Clob value;
5845 value = (Clob)(getCurrentRow().getColumnObject(columnIndex));
5957 * <code>CachedRowSetImpl</code> object as a <code>Clob</code> object
5962 * @return a <code>Clob</code> object representing an SQL
5970 public Clob getClo
[all...]
H A DJdbcRowSetImpl.java3242 * of this rowset's <code>ResultSet</code> object as a <code>Clob</code> object.
3245 * @return a <code>Clob</code> object representing the SQL <code>CLOB</code>
3251 public Clob getClob(int i) throws SQLException {
3327 * of this rowset's <code>ResultSet</code> object as a <code>Clob</code> object.
3330 * @return a <code>Clob</code> object representing the SQL <code>CLOB</code>
3336 public Clob getClob(String colName) throws SQLException {
3564 * @param c the new column <code>Clob</code> value
3570 public void updateClob(int columnIndex, Clob c) throws SQLException {
3592 * @param c the new column <code>Clob</code> value
3598 public void updateClob(String columnName, Clob
[all...]

Completed in 129 milliseconds