HomeSort by relevance Sort by last modified time
    Searched refs:Clob (Results 1 - 25 of 27) sorted by null

1 2

  /libcore/luni/src/main/java/java/sql/
NClob.java 20 public interface NClob extends Clob {
Clob.java 26 * A Java interface mapping for the SQL CLOB type.
28 * An SQL {@code CLOB} type stores a large array of characters as the value in a
31 * The {@code java.sql.Clob} interface provides methods for setting and
32 * retrieving data in the {@code Clob}, for querying {@code Clob} data length,
33 * for searching for data within the {@code Clob}.
35 public interface Clob {
38 * Gets the value of this {@code Clob} object as an ASCII stream.
41 * {@code Clob} data.
43 * if an error occurs accessing the {@code Clob}
    [all...]
SQLInput.java 270 * java.sql.Clob}.
272 * @return the next attribute as a {@code java.sql.Clob}. {@code null} if
276 * @see Clob
278 public Clob readClob() throws SQLException;
SQLOutput.java 251 * Write an SQL {@code Clob} value into the output stream.
254 * the {@code java.sql.Clob} object to write.
257 * @see Clob
259 public void writeClob(Clob theClob) throws SQLException;
306 * Write a {@code Clob} into the output stream as an SQL NCLOB.
309 * the {@code java.sql.Clob} object to write.
CallableStatement.java 245 * Gets the value of a specified JDBC {@code CLOB} parameter as a {@code
246 * java.sql.Clob}.
251 * @return a {@code java.sql.Clob} representing the value of the
256 * @see Clob
258 public Clob getClob(int parameterIndex) throws SQLException;
261 * Gets the value of a specified JDBC {@code CLOB} parameter as a {@code
262 * java.sql.Clob}.
266 * @return a {@code java.sql.Clob} with the value of the parameter. {@code
270 * @see Clob
272 public Clob getClob(String parameterName) throws SQLException
    [all...]
Connection.java     [all...]
ResultSet.java 507 * java.sql.Clob}.
511 * @return a {@code Clob} object representing the value in the column.
516 public Clob getClob(int columnIndex) throws SQLException;
520 * java.sql.Clob}.
524 * @return a {@code Clob} object representing the value in the column.
529 public Clob getClob(String colName) throws SQLException;
    [all...]
PreparedStatement.java 292 * Sets the value of a specified parameter to the given {@code Clob} object.
298 * a {@code java.sql.Clob} holding the data to which the
303 public void setClob(int parameterIndex, Clob theClob) throws SQLException;
457 * object's class implements {@code Ref}, {@code Blob}, {@code Clob},
480 * object's class implements {@code Ref}, {@code Blob}, {@code Clob},
505 * object's class implements {@code Ref}, {@code Blob}, {@code Clob},
    [all...]
  /external/robolectric/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/
TestHelper_Connection1.java 23 import java.sql.Clob;
205 public Clob createClob() throws SQLException {
  /libcore/luni/src/main/java/javax/sql/
RowSet.java 26 import java.sql.Clob;
696 * with the value of a supplied {@code java.sql.Clob}.
702 * the {@code Clob} value to which the parameter is set.
706 public void setClob(int parameterIndex, Clob theClob) throws SQLException;
744 * value of a supplied java.sql.Clob.
749 * the specific Clob object
753 public void setClob(String parameterName, Clob theClob) throws SQLException;
    [all...]
  /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 {
  /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...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 28 import java.sql.Clob;
    [all...]
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 

Completed in 504 milliseconds

1 2