Implement JDBC4Connection#prepareStatement

This commit is contained in:
김선우 2025-02-07 11:42:36 +09:00
parent cc09cb7d51
commit f5c4f4e8a1

View file

@ -40,10 +40,8 @@ public class JDBC4Connection extends LimboConnection {
}
@Override
@SkipNullableCheck
public PreparedStatement prepareStatement(String sql) throws SQLException {
// TODO
return null;
return new JDBC4PreparedStatement(this, sql);
}
@Override