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

1 2

  /libcore/luni/src/main/java/java/sql/
NClob.java 20 public interface NClob extends Clob {
Types.java 206 * The type code that identifies the SQL type NCLOB.
208 public static final int NCLOB = 2011;
SQLInput.java 316 * java.sql.NClob}.
318 * @return the next attribute as a {@code java.sql.NClob}. {@code null} if
323 public NClob readNClob() throws SQLException;
SQLOutput.java 306 * Write a {@code Clob} into the output stream as an SQL NCLOB.
313 public void writeNClob(NClob theNClob) throws SQLException;
CallableStatement.java     [all...]
Connection.java     [all...]
ResultSet.java     [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 49 assertEquals(NCLOB, 2011);
TestHelper_Connection1.java 26 import java.sql.NClob;
209 public NClob createNClob() throws SQLException {
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
java.sql.SQLOutput.html 86 <A NAME="java.sql.SQLOutput.writeNClob_added(java.sql.NClob)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/SQLOutput.html#writeNClob(java.sql.NClob)" target="_top"><code>writeNClob</code></A>(<code>NClob</code>)</nobr>
java.sql.Types.html 101 <A NAME="java.sql.Types.NCLOB"></A>
102 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/sql/Types.html#NCLOB" target="_top"><code>NCLOB</code></A></nobr>
java.sql.ResultSet.html 109 <nobr><code>NClob</code>&nbsp;<A HREF="../../../../reference/java/sql/ResultSet.html#getNClob(int)" target="_top"><code>getNClob</code></A>(<code>int</code>)</nobr>
116 <nobr><code>NClob</code>&nbsp;<A HREF="../../../../reference/java/sql/ResultSet.html#getNClob(java.lang.String)" target="_top"><code>getNClob</code></A>(<code>String</code>)</nobr>
353 <A NAME="java.sql.ResultSet.updateNClob_added(int, java.sql.NClob)"></A>
354 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/ResultSet.html#updateNClob(int, java.sql.NClob)" target="_top"><code>updateNClob</code></A>(<code>int,</nobr> NClob<nobr><nobr></code>)</nobr>
374 <A NAME="java.sql.ResultSet.updateNClob_added(java.lang.String, java.sql.NClob)"></A>
375 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/ResultSet.html#updateNClob(java.lang.String, java.sql.NClob)" target="_top"><code>updateNClob</code></A>(<code>String,</nobr> NClob<nobr><nobr></code>)</nobr>
java.sql.CallableStatement.html 115 <nobr><code>NClob</code>&nbsp;<A HREF="../../../../reference/java/sql/CallableStatement.html#getNClob(int)" target="_top"><code>getNClob</code></A>(<code>int</code>)</nobr>
122 <nobr><code>NClob</code>&nbsp;<A HREF="../../../../reference/java/sql/CallableStatement.html#getNClob(java.lang.String)" target="_top"><code>getNClob</code></A>(<code>String</code>)</nobr>
282 <A NAME="java.sql.CallableStatement.setNClob_added(java.lang.String, java.sql.NClob)"></A>
283 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/CallableStatement.html#setNClob(java.lang.String, java.sql.NClob)" target="_top"><code>setNClob</code></A>(<code>String,</nobr> NClob<nobr><nobr></code>)</nobr>
java.sql.PreparedStatement.html 184 <A NAME="java.sql.PreparedStatement.setNClob_added(int, java.sql.NClob)"></A>
185 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/PreparedStatement.html#setNClob(int, java.sql.NClob)" target="_top"><code>setNClob</code></A>(<code>int,</nobr> NClob<nobr><nobr></code>)</nobr>
javax.sql.RowSet.html 331 <A NAME="javax.sql.RowSet.setNClob_added(int, java.sql.NClob)"></A>
332 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/javax/sql/RowSet.html#setNClob(int, java.sql.NClob)" target="_top"><code>setNClob</code></A>(<code>int,</nobr> NClob<nobr><nobr></code>)</nobr>
352 <A NAME="javax.sql.RowSet.setNClob_added(java.lang.String, java.sql.NClob)"></A>
353 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/javax/sql/RowSet.html#setNClob(java.lang.String, java.sql.NClob)" target="_top"><code>setNClob</code></A>(<code>String,</nobr> NClob<nobr><nobr></code>)</nobr>
java.sql.SQLInput.html 87 <nobr><code>NClob</code>&nbsp;<A HREF="../../../../reference/java/sql/SQLInput.html#readNClob()" target="_top"><code>readNClob</code></A>()</nobr>
pkg_java.sql.html 91 <A NAME="NClob"></A>
92 <nobr><A HREF="../../../../reference/java/sql/NClob.html" target="_top"><code><I>NClob</I></code></A></nobr>
java.sql.Connection.html 109 <nobr><code>NClob</code>&nbsp;<A HREF="../../../../reference/java/sql/Connection.html#createNClob()" target="_top"><code>createNClob</code></A>()</nobr>
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 28 import java.sql.NClob;
786 public NClob getNClob(int columnIndex) throws SQLException {
790 public NClob getNClob(String columnLabel) throws SQLException {
941 public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
945 public void updateNClob(String columnLabel, NClob nClob)
1153 public void setNClob(int parameterIndex, NClob theNClob)
1269 public void setNClob(String parameterName, NClob value) throws SQLException {
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java     [all...]
JDBCConnection.java 472 public NClob createNClob() throws SQLException {
JDBCPreparedStatement.java 811 public void setNClob(int parameterIndex, NClob value)
816 public void setNClob(String parameterName, NClob value)
  /libcore/luni/src/main/java/javax/sql/
RowSet.java 28 import java.sql.NClob;
    [all...]
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
tsql.php 72 'NATURAL', 'NCHAR', 'NCLOB', 'NEW', 'NEXT', 'NO', 'NOCHECK', 'NONCLUSTERED', 'NONE', 'NULLIF', 'NUMERIC', 'OBJECT', 'OF',
  /frameworks/base/docs/html/sdk/api_diff/9/
user_comments_for_8_to_9.xml     [all...]

Completed in 403 milliseconds

1 2