This commit is contained in:
김선우 2025-06-08 13:29:10 +09:00
parent d6a5d8647a
commit 853e12f8a1
2 changed files with 1 additions and 4 deletions

View file

@ -119,7 +119,6 @@ public final class LimboResultSet {
this.open = false;
}
@Nullable
public Object get(String columnName) throws SQLException {
final int columnsLength = this.columnNames.length;
for (int i = 0; i < columnsLength; i++) {
@ -131,8 +130,6 @@ public final class LimboResultSet {
throw new SQLException("column name " + columnName + " not found");
}
// Note that columnIndex starts from 1
@Nullable
public Object get(int columnIndex) throws SQLException {
if (!this.isOpen()) {
throw new SQLException("ResultSet is not open");

View file

@ -204,7 +204,7 @@ public final class JDBC4PreparedStatement extends JDBC4Statement implements Prep
@Override
public ResultSetMetaData getMetaData() throws SQLException {
return this.resultSet;
return this.resultSet;
}
@Override