feat(java): implement getRow() in JDBC4ResultSet

This commit is contained in:
kimminseok
2025-10-07 14:18:34 +09:00
parent fd61ddbd21
commit fb370c63a6
2 changed files with 30 additions and 1 deletions

View File

@@ -453,7 +453,7 @@ public final class JDBC4ResultSet implements ResultSet, ResultSetMetaData {
@Override
public int getRow() throws SQLException {
throw new UnsupportedOperationException("not implemented");
return resultSet.getRow();
}
@Override