Skip to content

Commit c6a636b

Browse files
committed
Sqlite, add note about strict strings not supported by the jdbc driver
1 parent 6ef89ca commit c6a636b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/arjdbc/sqlite3/adapter.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,12 @@ def initialize(...)
741741

742742
conn_params = @config.compact
743743

744+
# NOTE: strict strings is not supported by the jdbc driver yet,
745+
# hope it will supported soon, I open a issue in their repository.
746+
# https://github.com/xerial/sqlite-jdbc/issues/1153
747+
#
748+
# @config[:strict] = ConnectionAdapters::SQLite3Adapter.strict_strings_by_default unless @config.key?(:strict)
749+
744750
@connection_parameters = conn_params
745751
end
746752

0 commit comments

Comments
 (0)