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

1 2 3

  /libcore/luni/src/main/java/java/sql/
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...]
NClob.java 20 public interface NClob extends Clob {
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.
Types.java 69 * The type code that identifies the SQL type {@code CLOB}.
71 public static final int CLOB = 2005;
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...]
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;
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...]
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...]
Connection.java     [all...]
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
java.sql.Clob.html 10 java.sql.Clob
74 Interface java.sql.<A HREF="../../../../reference/java/sql/Clob.html" target="_top"><font size="+2"><code>Clob</code></font></A>
86 <A NAME="java.sql.Clob.free_added()"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/Clob.html#free()" target="_top"><code>free</code></A>()</nobr>
93 <A NAME="java.sql.Clob.getCharacterStream_added(long, long)"></A>
94 <nobr><code>Reader</code>&nbsp;<A HREF="../../../../reference/java/sql/Clob.html#getCharacterStream(long, long)" target="_top"><code>getCharacterStream</code></A>(<code>long,</nobr> long<nobr><nobr></code>)</nobr>
java.sql.CallableStatement.html 247 <A NAME="java.sql.CallableStatement.setClob_added(java.lang.String, java.sql.Clob)"></A>
248 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/CallableStatement.html#setClob(java.lang.String, java.sql.Clob)" target="_top"><code>setClob</code></A>(<code>String,</nobr> Clob<nobr><nobr></code>)</nobr>
pkg_java.sql.html 253 <A NAME="Clob"></A>
254 <nobr><A HREF="java.sql.Clob.html"><I>Clob</I></A></nobr>
java.sql.Connection.html 102 <nobr><code>Clob</code>&nbsp;<A HREF="../../../../reference/java/sql/Connection.html#createClob()" target="_top"><code>createClob</code></A>()</nobr>
javax.sql.RowSet.html 240 <A NAME="javax.sql.RowSet.setClob_added(java.lang.String, java.sql.Clob)"></A>
241 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/javax/sql/RowSet.html#setClob(java.lang.String, java.sql.Clob)" target="_top"><code>setClob</code></A>(<code>String,</nobr> Clob<nobr><nobr></code>)</nobr>
  /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;
205 public Clob createClob() throws SQLException {
  /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/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/libvpx/examples/includes/geshi/geshi/
tsql.php 59 'CLASS', 'CLOB', 'CLOSE', 'CLUSTERED', 'COALESCE', 'COLLATE', 'COLLATION', 'COLUMN', 'COMMIT', 'COMPLETION', 'COMPUTE', 'CONNECT',
abap.php 237 'all clob columns',
    [all...]
groovy.php 256 'ClipboardOwner', 'Clob', 'Cloneable',
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 28 import java.sql.Clob;
    [all...]

Completed in 402 milliseconds

1 2 3