本文整理匯總了Java中org.skife.jdbi.v2.Handle.rollback方法的典型用法代碼示例。如果您正苦於以下問題:Java Handle.rollback方法的具體用法?Java Handle.rollback怎麽用?Java Handle.rollback使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.skife.jdbi.v2.Handle
的用法示例。
在下文中一共展示了Handle.rollback方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: doReadDerby
import org.skife.jdbi.v2.Handle; //導入方法依賴的package包/類
/**
* Derby does not allow to read from the blob after the connection has been closed.
* It also requires an outcome of commit/rollback.
*/
@SuppressWarnings("PMD.EmptyCatchBlock")
private InputStream doReadDerby(String id) {
Handle h = dbi.open();
try {
h.getConnection().setAutoCommit(false);
List<Map<String, Object>> res = h.select("SELECT data FROM icon_filestore WHERE id=?", id);
Optional<Blob> blob = res.stream()
.map(row -> row.get("data"))
.map(Blob.class::cast)
.findFirst();
if (blob.isPresent()) {
return new HandleCloserInputStream(h, blob.get().getBinaryStream());
} else {
h.commit();
h.close();
return null;
}
} catch (@SuppressWarnings("PMD.AvoidCatchingGenericException") Exception e) {
// Do cleanup
try {
h.rollback();
} catch (@SuppressWarnings("PMD.AvoidCatchingGenericException") Exception ex) {
// ignore
}
IOUtils.closeQuietly(h);
throw IconDataAccessException.launderThrowable(e);
}
}
示例2: doReadDerby
import org.skife.jdbi.v2.Handle; //導入方法依賴的package包/類
/**
* Derby does not allow to read from the blob after the connection has been closed.
* It also requires an outcome of commit/rollback.
*/
@SuppressWarnings("PMD.EmptyCatchBlock")
private InputStream doReadDerby(String path) {
Handle h = dbi.open();
try {
h.getConnection().setAutoCommit(false);
List<Map<String, Object>> res = h.select("SELECT data FROM filestore WHERE path=?", path);
Optional<Blob> blob = res.stream()
.map(row -> row.get("data"))
.map(Blob.class::cast)
.findFirst();
if (blob.isPresent()) {
return new HandleCloserInputStream(h, blob.get().getBinaryStream());
} else {
h.commit();
h.close();
return null;
}
} catch (@SuppressWarnings("PMD.AvoidCatchingGenericException") Exception e) {
// Do cleanup
try {
h.rollback();
} catch (@SuppressWarnings("PMD.AvoidCatchingGenericException") Exception ex) {
// ignore
}
IOUtils.closeQuietly(h);
throw ExtensionDataAccessException.launderThrowable(e);
}
}
示例3: doReadDerby
import org.skife.jdbi.v2.Handle; //導入方法依賴的package包/類
/**
* Derby does not allow to read from the blob after the connection has been closed.
* It also requires an outcome of commit/rollback.
*/
@SuppressWarnings("PMD.EmptyCatchBlock")
private InputStream doReadDerby(String path) {
Handle h = dbi.open();
try {
h.getConnection().setAutoCommit(false);
List<Map<String, Object>> res = h.select("SELECT data FROM filestore WHERE path=?", path);
Optional<Blob> blob = res.stream()
.map(row -> row.get("data"))
.map(Blob.class::cast)
.findFirst();
if (blob.isPresent()) {
return new HandleCloserInputStream(h, blob.get().getBinaryStream());
} else {
h.commit();
h.close();
return null;
}
} catch (@SuppressWarnings("PMD.AvoidCatchingGenericException") Exception e) {
// Do cleanup
try {
h.rollback();
} catch (@SuppressWarnings("PMD.AvoidCatchingGenericException") Exception ex) {
// ignore
}
IOUtils.closeQuietly(h);
throw FileStoreException.launderThrowable(e);
}
}
示例4: deleteRepairRun
import org.skife.jdbi.v2.Handle; //導入方法依賴的package包/類
@Override
public Optional<RepairRun> deleteRepairRun(UUID id) {
RepairRun result = null;
Handle handle = null;
try {
handle = jdbi.open();
handle.begin();
IStoragePostgreSql pg = getPostgresStorage(handle);
RepairRun runToDelete = pg.getRepairRun(UuidUtil.toSequenceId(id));
if (runToDelete != null) {
int segmentsRunning
= pg.getSegmentAmountForRepairRunWithState(UuidUtil.toSequenceId(id), RepairSegment.State.RUNNING);
if (segmentsRunning == 0) {
pg.deleteRepairSegmentsForRun(UuidUtil.toSequenceId(runToDelete.getId()));
pg.deleteRepairRun(UuidUtil.toSequenceId(id));
result = runToDelete.with().runState(RepairRun.RunState.DELETED).build(id);
} else {
LOG.warn("not deleting RepairRun \"{}\" as it has segments running: {}", id, segmentsRunning);
}
}
handle.commit();
} catch (DBIException ex) {
LOG.warn("DELETE failed", ex);
ex.printStackTrace();
if (handle != null) {
handle.rollback();
}
} finally {
if (handle != null) {
handle.close();
}
}
if (result != null) {
tryDeletingRepairUnit(result.getRepairUnitId());
}
return Optional.fromNullable(result);
}