Uses of Interface
java.sql.RowId
-
Packages that use RowId 软件包 描述 java.sql 提供使用Java编程语言访问和处理存储在数据源(通常是关系数据库)中的数据的API。javax.sql 通过Java编程语言为服务器端数据源访问和处理提供API。javax.sql.rowset JDBCRowSet实现的标准接口和基类。javax.sql.rowset.serial 提供实用程序类以允许Java编程语言中的SQL类型和数据类型之间的可序列化映射。 -
-
Uses of RowId in java.sql
Methods in java.sql that return RowId Modifier and Type 方法 描述 RowIdCallableStatement. getRowId(int parameterIndex)检索指定的JDBCROWID参数的值作为java.sql.RowId对象。RowIdCallableStatement. getRowId(String parameterName)检索指定的JDBCROWID参数的值作为java.sql.RowId对象。RowIdResultSet. getRowId(int columnIndex)以Java编程语言的ResultSet对象的形式java.sql.RowId该ResultSet对象的当前行中指定列的值。RowIdResultSet. getRowId(String columnLabel)以Java编程语言中的java.sql.RowId对象获取该ResultSet对象的当前行中指定列的值。RowIdSQLInput. readRowId()从流中读取SQLROWID值,并将其作为Java编程语言中的RowId对象返回。Methods in java.sql with parameters of type RowId Modifier and Type 方法 描述 voidCallableStatement. setRowId(String parameterName, RowId x)将指定的参数设置为给定的java.sql.RowId对象。voidPreparedStatement. setRowId(int parameterIndex, RowId x)将指定的参数设置为给定的java.sql.RowId对象。voidResultSet. updateRowId(int columnIndex, RowId x)使用RowId值更新指定的列。voidResultSet. updateRowId(String columnLabel, RowId x)使用RowId值更新指定的列。voidSQLOutput. writeRowId(RowId x)将SQLROWID值写入流。 -
Uses of RowId in javax.sql
Methods in javax.sql with parameters of type RowId Modifier and Type 方法 描述 voidRowSet. setRowId(int parameterIndex, RowId x)将指定的参数设置为给定的java.sql.RowId对象。voidRowSet. setRowId(String parameterName, RowId x)将指定的参数设置为给定的java.sql.RowId对象。 -
Uses of RowId in javax.sql.rowset
Methods in javax.sql.rowset with parameters of type RowId Modifier and Type 方法 描述 voidBaseRowSet. setRowId(int parameterIndex, RowId x)将指定的参数设置为给定的java.sql.RowId对象。voidBaseRowSet. setRowId(String parameterName, RowId x)将指定的参数设置为给定的java.sql.RowId对象。 -
Uses of RowId in javax.sql.rowset.serial
Methods in javax.sql.rowset.serial that return RowId Modifier and Type 方法 描述 RowIdSQLInputImpl. readRowId()从流中读取SQLROWID值,并将其作为Java编程语言中的RowId对象返回。Methods in javax.sql.rowset.serial with parameters of type RowId Modifier and Type 方法 描述 voidSQLOutputImpl. writeRowId(RowId x)写入SQLROWID值。
-