6364656667686970
public void begin() throws ResourceException { try { transaction.begin(); } catch (ResourceException e) { throw new ResourceException(e.getMessage()); } }
7172737475767778
public void commit() throws ResourceException { try { transaction.commit(); } catch (ResourceException e) { throw new ResourceException(e.getMessage()); } }
7980818283848586
public void rollback() throws ResourceException { try { transaction.rollback(); } catch (ResourceException e) { throw new ResourceException(e.getMessage()); } }
6263646566676869
7071727374757677
7879808182838485
67686970717273747576
con.setAutoCommit(false); if (sendEvents) { mc.sendEvent(ConnectionEvent.LOCAL_TRANSACTION_STARTED, null); } } catch (SQLException ex) { ResourceException re = new EISSystemException(ex.getMessage()); re.setLinkedException(ex); throw re; } }
838485868788899091929394
if (sendEvents) { mc.sendEvent(ConnectionEvent.LOCAL_TRANSACTION_COMMITTED, null); } } catch (SQLException ex) { ResourceException re = new EISSystemException(ex.getMessage()); re.setLinkedException(ex); throw re; } finally { try { con.setAutoCommit(true); } catch (Exception ex) {}
103104105106107108109110111112113114
if (sendEvents) { mc.sendEvent(ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK, null); } } catch (SQLException ex) { ResourceException re = new EISSystemException(ex.getMessage()); re.setLinkedException(ex); throw re; } finally { try { con.setAutoCommit(true); } catch (Exception ex) {}
53545556575859
public CciRecordFactory() { } public MappedRecord createMappedRecord(String recordName) throws ResourceException { throw new ResourceException("MappedRecord not supported."); }