![JAR search and dependency download from the Maven repository](/logo.png)
org.postgresql.adba.operations.helpers.PgTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pgadba Show documentation
Show all versions of pgadba Show documentation
ADBA implementation for PostgreSQL
The newest version!
package org.postgresql.adba.operations.helpers;
import jdk.incubator.sql2.TransactionCompletion;
public class PgTransaction implements TransactionCompletion {
private boolean rollbackOnly;
@Override
public boolean setRollbackOnly() {
return rollbackOnly = true;
}
@Override
public boolean isRollbackOnly() {
return rollbackOnly;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy