Clover Coverage Report - Liquibase Core 2.0.2
Coverage timestamp: Wed Aug 3 2011 19:29:16 EDT
../../../img/srcFileCovDistChart0.png 69% of files have more coverage
1   34   4   0.25
0   18   4   4
4     1  
1    
 
  SybaseConnection       Line # 15 1 0% 4 5 0% 0.0
 
No Tests
 
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  0 toggle public SybaseConnection(Connection delegate) {
17  0 super(delegate);
18    }
19   
 
20  0 toggle @Override
21    public void commit() throws DatabaseException {
22   
23    }
24   
 
25  0 toggle @Override
26    public void rollback() throws DatabaseException {
27   
28    }
29   
 
30  0 toggle @Override
31    public void rollback(Savepoint savepoint) throws DatabaseException {
32   
33    }
34    }