HomeSort by relevance Sort by last modified time
    Searched full:clob (Results 1 - 25 of 46) sorted by null

1 2

  /libcore/ojluni/src/main/java/java/sql/
Clob.java 32 * for the SQL <code>CLOB</code> type.
33 * An SQL <code>CLOB</code> is a built-in type
36 * 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
38 * contains a logical pointer to the SQL <code>CLOB</code> data rather than
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
42 * length of an SQL <code>CLOB</code> (Character Large Object) value,
43 * for materializing a <code>CLOB</code> value on the client, and fo
    [all...]
NClob.java 28 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 { }
PreparedStatement.java 109 * a <code>ARRAY</code>, <code>BLOB</code>, <code>CLOB</code>,
403 * a <code>ARRAY</code>, <code>BLOB</code>, <code>CLOB</code>,
432 * <code>Ref</code>, <code>Blob</code>, <code>Clob</code>, <code>NClob</code>,
558 * Sets the designated parameter to the given <code>java.sql.Clob</code> object.
559 * The driver converts this to an SQL <code>CLOB</code> value when it
563 * @param x a <code>Clob</code> object that maps an SQL <code>CLOB</code> value
570 void setClob (int parameterIndex, Clob x) throws SQLException;
    [all...]
CallableStatement.java 95 * a <code>ARRAY</code>, <code>BLOB</code>, <code>CLOB</code>,
129 * a <code>ARRAY</code>, <code>BLOB</code>, <code>CLOB</code>,
465 * Retrieves the value of the designated JDBC <code>CLOB</code> parameter as a
466 * <code>java.sql.Clob</code> object in the Java programming language.
469 * @return the parameter value as a <code>Clob</code> object in the
479 Clob getClob (int parameterIndex) throws SQLException;
610 * a <code>ARRAY</code>, <code>BLOB</code>, <code>CLOB</code>,
648 * a <code>ARRAY</code>, <code>BLOB</code>, <code>CLOB</code>,
683 * a <code>ARRAY</code>, <code>BLOB</code>, <code>CLOB</code>,
    [all...]
SQLInput.java 311 * Reads an SQL <code>CLOB</code> value from the stream and returns it as a
312 * <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;
package.html 140 <LI><code>Clob</code> interface -- mapping for SQL <code>CLOB</code>
209 <li>Enhanced Blob/Clob functionality -- Support provided to create and free a Blob/Clob instance
242 <code>CLOB</code>, <code>ARRAY</code>, and <code>REF</code> values.
Types.java 232 * <code>CLOB</code>.
235 public final static int CLOB = 2005;
SQLOutput.java 318 * Writes an SQL <code>CLOB</code> value to the stream.
320 * @param x a <code>Clob</code> object representing data of an SQL
321 * <code>CLOB</code> value
328 void writeClob(Clob x) throws SQLException;
Connection.java     [all...]
ResultSet.java 186 * <code>Clob</code> or <code>NClob</code> objects created by the <code>ResultSet</code>. <code>Blob</code>,
187 * <code>Clob</code> or <code>NClob</code> objects remain valid for at least the duration of the
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteCursor.java 7 import java.sql.Clob;
110 if (value instanceof Clob) {
112 return ((Clob) value).getSubString(1, (int)((Clob) value).length());
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 36 assertEquals(CLOB, 2005);
TestHelper_Connection1.java 23 import java.sql.Clob;
204 public Clob createClob() throws SQLException {
  /libcore/ojluni/src/main/java/javax/sql/rowset/serial/
package.html 74 A serializable mapping in the Java programming language of an SQL CLOB
78 from a <tt>Clob </tt>object. Note that the <tt>Clob </tt>object should have
79 brought the SQL CLOB value's data over to the client before a <tt>SerialClob
80 </tt>object is constructed from it. The data of an SQL CLOB value can be
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 26 import java.sql.Clob;
139 public void setClob(int parameterIndex, Clob theClob) throws SQLException {
363 public Clob getClob(int columnIndex) throws SQLException {
367 public Clob getClob(String colName) throws SQLException {
671 public void updateClob(int columnIndex, Clob x) throws SQLException {
674 public void updateClob(String columnName, Clob x) throws SQLException {
1265 public void setClob(String parameterName, Clob x) throws SQLException {
  /libcore/ojluni/src/main/java/javax/sql/
RowSet.java     [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SQLiteCursorTest.java 36 "float_value REAL, double_value DOUBLE, blob_value BINARY, clob_value CLOB );");
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 455 public void setClob(int i, Clob x) throws SQLException {
731 public Clob getClob(String parameterName) throws SQLException {
735 public Clob getClob(int parameterIndex) throws SQLException {
JDBCConnection.java 464 public Clob createClob() throws SQLException {
JDBCResultSet.java 701 public java.sql.Clob getClob(int columnIndex) throws SQLException {
705 public java.sql.Clob getClob(String columnName) throws SQLException {
    [all...]
  /prebuilts/sdk/23/
android.jar 
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 28 import java.sql.Clob;
    [all...]
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /cts/tools/dex-tools/dex/
classes0.out.dex     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.j2se12_1.0.0.200901281111/org/eclipse/pde/api/tools/internal/api_stubs/
J2SE-1.2.zip 

Completed in 1004 milliseconds

1 2