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
are currently all stubbed with throw new SQLFeatureNotSupportedException("prepareStatement").
Until they are fully implemented, they could be rewritten so that certain calls may proceed if generated keys are not required. For instance, the call at L296 could be rewritten to:
These methods as written are currently keeping me from utilizing duckdb with the Jetbrains Exposed API, because the connection wrappers call prepareStatement([sql], NO_GENERATED_KEYS) instead of prepareStatement([sql]).
The text was updated successfully, but these errors were encountered:
The
prepareStatement
methods inDuckDBConnection
here:duckdb-java/src/main/java/org/duckdb/DuckDBConnection.java
Line 296 in f7ae8cb
are currently all stubbed with
throw new SQLFeatureNotSupportedException("prepareStatement")
.Until they are fully implemented, they could be rewritten so that certain calls may proceed if generated keys are not required. For instance, the call at L296 could be rewritten to:
These methods as written are currently keeping me from utilizing duckdb with the Jetbrains Exposed API, because the connection wrappers call
prepareStatement([sql], NO_GENERATED_KEYS)
instead ofprepareStatement([sql])
.The text was updated successfully, but these errors were encountered: