public interface Savepoint
Connection.rollback
方法引用的一个点。
当事务回滚到保存点时,保存点之后所做的所有更改都将被撤销。
保存点可以是命名的或未命名的。 未命名的保存点由基础数据源生成的ID标识。
Modifier and Type | Method and Description |
---|---|
int |
getSavepointId()
检索此
Savepoint 对象所代表的保存点的生成ID。
|
String |
getSavepointName()
检索此
Savepoint 对象所代表的保存点的名称。
|
int getSavepointId() throws SQLException
Savepoint
对象所代表的保存点的生成ID。
SQLException
- 如果这是一个命名的保存点
String getSavepointName() throws SQLException
Savepoint
对象所代表的保存点的名称。
SQLException
- 如果这是一个未命名的保存点
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.