| 软件包 | 描述 |
|---|---|
| java.sql |
提供的API来访问和处理的数据存储在数据源(通常是一个关系数据库)使用java编程语言
TM。
|
| javax.sql |
提供了对服务器端数据源的访问和处理来自
TM java编程语言的API。
|
| javax.sql.rowset |
JDBC
RowSet实现标准接口和基类。
|
| javax.sql.rowset.serial |
提供实用类允许序列化映射之间的SQL类型和数据在java编程语言的类型。
|
| Modifier and Type | Method and Description |
|---|---|
RowId |
ResultSet.getRowId(int columnIndex)
检索指定的列在这
ResultSet对象的当前行的值作为java编程语言中的一个
java.sql.RowId对象。
|
RowId |
CallableStatement.getRowId(int parameterIndex)
检索指定JDBC
ROWID参数的值作为一个
java.sql.RowId对象。
|
RowId |
ResultSet.getRowId(String columnLabel)
检索指定的列在这
ResultSet对象的当前行的值作为java编程语言中的一个
java.sql.RowId对象。
|
RowId |
CallableStatement.getRowId(String parameterName)
检索指定JDBC
ROWID参数的值作为一个
java.sql.RowId对象。
|
RowId |
SQLInput.readRowId()
从流中读取SQL
ROWID值并返回它在java编程语言
RowId对象。
|
| Modifier and Type | Method and Description |
|---|---|
void |
PreparedStatement.setRowId(int parameterIndex, RowId x)
设置为给定
java.sql.RowId对象指定的参数。
|
void |
CallableStatement.setRowId(String parameterName, RowId x)
设置为给定
java.sql.RowId对象指定的参数。
|
void |
ResultSet.updateRowId(int columnIndex, RowId x)
更新指定的列与
RowId价值。
|
void |
ResultSet.updateRowId(String columnLabel, RowId x)
更新指定的列与
RowId价值。
|
void |
SQLOutput.writeRowId(RowId x)
写一个SQL
ROWID价值流。
|
| Modifier and Type | Method and Description |
|---|---|
void |
RowSet.setRowId(int parameterIndex, RowId x)
设置为给定
java.sql.RowId对象指定的参数。
|
void |
RowSet.setRowId(String parameterName, RowId x)
设置为给定
java.sql.RowId对象指定的参数。
|
| Modifier and Type | Method and Description |
|---|---|
void |
BaseRowSet.setRowId(int parameterIndex, RowId x)
设置为给定
java.sql.RowId对象指定的参数。
|
void |
BaseRowSet.setRowId(String parameterName, RowId x)
设置为给定
java.sql.RowId对象指定的参数。
|
| Modifier and Type | Method and Description |
|---|---|
RowId |
SQLInputImpl.readRowId()
从流中读取SQL
ROWID值并返回它在java编程语言
RowId对象。
|
| Modifier and Type | Method and Description |
|---|---|
void |
SQLOutputImpl.writeRowId(RowId x)
写一个SQL
ROWID价值流。
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.