As stated before I'm trying to access an old front...
# exposed
d
As stated before I'm trying to access an old frontbase db via exposed. With the given jdbc driver the call of
Copy code
open fun prepared(transaction: Transaction, sql: String) : PreparedStatement = transaction.connection.prepareStatement(sql, PreparedStatement.NO_GENERATED_KEYS)!!
(in Statement.kt) goes to the method
Copy code
public PreparedStatement prepareStatement(String var1, int var2) throws SQLException {
    return null;
}
(in FBJConnection) returning null. The additional parameters of prepareStatement(sql, var1, ...) might be for resultSetType and resultSetConcurrency. Using
Copy code
... = transaction.connection.prepareStatement(sql)!!
does work. What is the best/cleanest way to handle this problem? TIA