Uses of Interface
java.sql.NClob
-
Packages that use NClob 软件包 描述 java.sql 提供使用Java编程语言访问和处理存储在数据源(通常是关系数据库)中的数据的API。javax.sql 通过Java编程语言为服务器端数据源访问和处理提供API。javax.sql.rowset JDBCRowSet实现的标准接口和基类。javax.sql.rowset.serial 提供实用程序类以允许Java编程语言中的SQL类型和数据类型之间的可序列化映射。 -
-
Uses of NClob in java.sql
Methods in java.sql that return NClob Modifier and Type 方法 描述 NClobConnection. createNClob()构造一个实现NClob接口的对象。NClobCallableStatement. getNClob(int parameterIndex)以Java编程语言作为java.sql.NClob对象检索指定的JDBCNCLOB参数的值。NClobCallableStatement. getNClob(String parameterName)以Java编程语言作为java.sql.NClob对象检索JDBCNCLOB参数的值。NClobResultSet. getNClob(int columnIndex)这个检索的当前行中指定列的值ResultSet对象为NClob的Java编程语言对象。NClobResultSet. getNClob(String columnLabel)这个检索的当前行中指定列的值ResultSet对象为NClob的Java编程语言对象。NClobSQLInput. readNClob()从流中读取SQLNCLOB值,并将其作为Java编程语言中的NClob对象返回。Methods in java.sql with parameters of type NClob Modifier and Type 方法 描述 voidCallableStatement. setNClob(String parameterName, NClob value)将指定的参数设置为java.sql.NClob对象。voidPreparedStatement. setNClob(int parameterIndex, NClob value)将指定的参数设置为java.sql.NClob对象。voidResultSet. updateNClob(int columnIndex, NClob nClob)使用java.sql.NClob值更新指定的列。voidResultSet. updateNClob(String columnLabel, NClob nClob)使用java.sql.NClob值更新指定的列。voidSQLOutput. writeNClob(NClob x)将SQLNCLOB值写入流。 -
Uses of NClob in javax.sql
Methods in javax.sql with parameters of type NClob Modifier and Type 方法 描述 voidRowSet. setNClob(int parameterIndex, NClob value)将指定的参数设置为java.sql.NClob对象。voidRowSet. setNClob(String parameterName, NClob value)将指定的参数设置为java.sql.NClob对象。 -
Uses of NClob in javax.sql.rowset
Methods in javax.sql.rowset with parameters of type NClob Modifier and Type 方法 描述 voidBaseRowSet. setNClob(int parameterIndex, NClob value)将指定的参数设置为java.sql.NClob对象。voidBaseRowSet. setNClob(String parameterName, NClob value)将指定的参数设置为java.sql.NClob对象。 -
Uses of NClob in javax.sql.rowset.serial
Methods in javax.sql.rowset.serial that return NClob Modifier and Type 方法 描述 NClobSQLInputImpl. readNClob()从流中读取SQLNCLOB值,并将其作为Java编程语言中的Clob对象返回。Methods in javax.sql.rowset.serial with parameters of type NClob Modifier and Type 方法 描述 voidSQLOutputImpl. writeNClob(NClob x)将SQLNCLOB值写入流。
-