Skip to content
thallgren edited this page Jan 14, 2013 · 1 revision

PostgreSQL save-points are exposed using the standard setSavepoint() and releaseSavepoint() methods on the java.sql.Connection interface. Two restrictions apply:

  • A save-point must be rolled back or released in the function where it was set.
  • A save-point must not outlive the function where it was set.