| 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 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
@author |
| 13 |
|
|
| 14 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 4 |
Complexity Density: 4 |
|
| 15 |
|
public class SybaseConnection extends JdbcConnection { |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 16 |
0
|
public SybaseConnection(Connection delegate) {... |
| 17 |
0
|
super(delegate); |
| 18 |
|
} |
| 19 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 20 |
0
|
@Override... |
| 21 |
|
public void commit() throws DatabaseException { |
| 22 |
|
|
| 23 |
|
} |
| 24 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 25 |
0
|
@Override... |
| 26 |
|
public void rollback() throws DatabaseException { |
| 27 |
|
|
| 28 |
|
} |
| 29 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 30 |
0
|
@Override... |
| 31 |
|
public void rollback(Savepoint savepoint) throws DatabaseException { |
| 32 |
|
|
| 33 |
|
} |
| 34 |
|
} |