mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-20 00:24:20 +01:00
Remove unused symbols after merge conflict resolution
This commit is contained in:
@@ -147,13 +147,13 @@ public class JDBC4Connection implements Connection {
|
||||
|
||||
@Override
|
||||
public int getHoldability() throws SQLException {
|
||||
checkOpen();
|
||||
connection.checkOpen();
|
||||
return ResultSet.CLOSE_CURSORS_AT_COMMIT;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setHoldability(int holdability) throws SQLException {
|
||||
checkOpen();
|
||||
connection.checkOpen();
|
||||
if (holdability != ResultSet.CLOSE_CURSORS_AT_COMMIT) {
|
||||
throw new SQLException("Limbo only supports CLOSE_CURSORS_AT_COMMIT");
|
||||
}
|
||||
@@ -221,8 +221,8 @@ public class JDBC4Connection implements Connection {
|
||||
public PreparedStatement prepareStatement(
|
||||
String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
|
||||
throws SQLException {
|
||||
checkOpen();
|
||||
checkCursor(resultSetType, resultSetConcurrency, resultSetHoldability);
|
||||
connection.checkOpen();
|
||||
connection.checkCursor(resultSetType, resultSetConcurrency, resultSetHoldability);
|
||||
return new JDBC4PreparedStatement(this, sql);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user