HomeSort by relevance Sort by last modified time
    Searched refs:Savepoint (Results 1 - 16 of 16) sorted by null

  /libcore/luni/src/main/java/java/sql/
Savepoint.java 21 * A savepoint is an instant during the current transaction that can be utilized
23 * particular savepoint means that all changes that occurred after that
24 * savepoint are undone.
26 public interface Savepoint {
29 * Returns the constructed ID for this savepoint.
31 * @return the ID for this savepoint.
38 * Returns the name for this savepoint.
40 * @return the name of this savepoint.
Connection.java 605 * Releases the specified {@code savepoint} from the present transaction. Once removed,
606 * the {@code Savepoint} is considered invalid and should not be referenced
609 * @param savepoint
613 * {@code savepoint} is considered not valid in this
616 public void releaseSavepoint(Savepoint savepoint) throws SQLException;
630 * Undoes all changes made after the supplied {@code Savepoint} object was
633 * @param savepoint
634 * the Savepoint to roll back to
638 public void rollback(Savepoint savepoint) throws SQLException
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 32 import java.sql.Savepoint;
153 public void releaseSavepoint(Savepoint savepoint) throws SQLException {
159 public void rollback(Savepoint savepoint) throws SQLException {
174 public Savepoint setSavepoint() throws SQLException {
178 public Savepoint setSavepoint(String name) throws SQLException {
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 405 public Savepoint setSavepoint() throws SQLException {
409 public Savepoint setSavepoint(String name) throws SQLException {
413 public void rollback(Savepoint x) throws SQLException {
417 public void releaseSavepoint(Savepoint x) throws SQLException {
  /libcore/luni/src/test/java/libcore/java/sql/
OldConnectionTest.java 27 import java.sql.Savepoint;
    [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 756 milliseconds