Package java.sql

Interface Savepoint


public interface Savepoint
A savepoint is an instant during the current transaction that can be utilized by a rollback via the Connection.rollback() command. Rolling back to a particular savepoint means that all changes that occurred after that savepoint are undone.
  • Method Summary

    Modifier and Type Method Description
    int getSavepointId()
    Returns the constructed ID for this savepoint.
    String getSavepointName()
    Returns the name for this savepoint.
  • Method Details

    • getSavepointId

      int getSavepointId() throws SQLException
      Returns the constructed ID for this savepoint.
      Returns:
      the ID for this savepoint.
      Throws:
      SQLException - if an error occurrs accessing the database.
    • getSavepointName

      String getSavepointName() throws SQLException
      Returns the name for this savepoint.
      Returns:
      the name of this savepoint.
      Throws:
      SQLException - if an error occurrs accessing the database.