1 10 11 package com.triactive.jdo; 12 13 import java.sql.Connection ; 14 import java.sql.SQLException ; 15 16 17 public interface Transaction extends javax.jdo.Transaction 18 { 19 Connection getConnection(boolean forWriting) throws SQLException ; 20 21 void releaseConnection(Connection conn) throws SQLException ; 22 23 int getTransactionIsolation(); 24 25 void setTransactionIsolation(int isolationLevel); 26 27 boolean useUpdateLockOnFetch(); 28 } 29 | Popular Tags |