Coverage Report - liquibase.database.jvm.SybaseConnection
 
Classes in this File Line Coverage Branch Coverage Complexity
SybaseConnection
0%
0/5
N/A
1
 
 1  
 package liquibase.database.jvm;
 2  
 
 3  
 import liquibase.exception.DatabaseException;
 4  
 
 5  
 import java.sql.Connection;
 6  
 import java.sql.Savepoint;
 7  
 
 8  
 /**
 9  
  * A Sybase specific Delegate that removes the calls to commit and rollback as Sybase requires that autocommit be set to
 10  
  * true.
 11  
  * 
 12  
  * @author <a href="mailto:csuml@yahoo.co.uk">Paul Keeble</a>
 13  
  * 
 14  
  */
 15  
 public class SybaseConnection extends JdbcConnection {
 16  
     public SybaseConnection(Connection delegate) {
 17  0
         super(delegate);
 18  0
     }
 19  
 
 20  
     @Override
 21  
     public void commit() throws DatabaseException {
 22  
 
 23  0
     }
 24  
 
 25  
     @Override
 26  
     public void rollback() throws DatabaseException {
 27  
 
 28  0
     }
 29  
 
 30  
     @Override
 31  
     public void rollback(Savepoint savepoint) throws DatabaseException {
 32  
 
 33  0
     }
 34  
 }