User: patriot1burke
  Date: 01/07/03 15:56:33

  Modified:    src/main/org/jboss/pool/jdbc/xa/wrapper
                        XAConnectionImpl.java
  Log:
  added support for setting transaction isolation and setting the PS cache size.
  
  Revision  Changes    Path
  1.2       +8 -0      
jbosspool/src/main/org/jboss/pool/jdbc/xa/wrapper/XAConnectionImpl.java
  
  Index: XAConnectionImpl.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jbosspool/src/main/org/jboss/pool/jdbc/xa/wrapper/XAConnectionImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XAConnectionImpl.java     2001/05/15 07:58:24     1.1
  +++ XAConnectionImpl.java     2001/07/03 22:56:32     1.2
  @@ -42,6 +42,10 @@
    * @see org.jboss.pool.xa.TransactionListener
    *
    * @author Aaron Mulder ([EMAIL PROTECTED])
  + * @author <a href="mailto:[EMAIL PROTECTED]";>Bill Burke</a>
  + *
  + * REVISIONS:
  + * 20010703 bill added code for transaction isolation
    */
   public class XAConnectionImpl implements XAConnection, PooledObject {
       private final static String CLOSED = "Connection has been closed!";
  @@ -96,6 +100,10 @@
           return preparedStatementCacheSize;
       }
   
  +
  +    public void setTransactionIsolation(int iso) throws SQLException {
  +        con.setTransactionIsolation(iso);
  +    }
       /**
        * Shuts down this wrapper (and the underlying Connection) permanently.
        */
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to