You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get the DuckDb JDBC driver to run within the Kotlin Exposed framework. It looks like Exposed is using a variant of the DatabaseConnection.prepareStatement method that is not supported by this driver.
However, it appears as if this function is only ever used with autoGeneratedKeys = Statement.NO_GENERATED_KEYS when doing select statements and thus it can be redirected to the prepareStatment(String sql) method, that is already implemented.
I'm trying to get the DuckDb JDBC driver to run within the Kotlin Exposed framework. It looks like Exposed is using a variant of the
DatabaseConnection.prepareStatement
method that is not supported by this driver.However, it appears as if this function is only ever used with
autoGeneratedKeys = Statement.NO_GENERATED_KEYS
when doing select statements and thus it can be redirected to theprepareStatment(String sql)
method, that is already implemented.Something similar is done in the Postgres JDBC driver.
The text was updated successfully, but these errors were encountered: