activerecord-jdbc-adapter
activerecord-jdbc-adapter copied to clipboard
JRuby's ActiveRecord adapter using JDBC.
Needs investigation.
No error raised..No investigation yet.
Our adapter connection stuff likely is being done differently than native connector but I remember making the change because I could not figure out another failure. So I suspect this...
Column data coming back from sqlite3 and mysql do not transcode back to internal encoding.
If the type is registered and provided, we can create a PGobject and specify the type. If the type information is not provided but they are treated as a String...
`select_all` method seems to always return empty column types. rails 4.2.4 and activerecord-jdbcpostgresql-adapter 1.3.24 Consider this: ``` ActiveRecord::Base.connection.select_all("SELECT pg_is_in_recovery()") # => # ``` And compare with c ruby pg gem....
Every since we updated activerecord-jdbc-adapter to **50.0** we are seeing JDBC error on our STDOUT. > Mar 28, 2018 7:21:16 AM org.postgresql.Driver connect > SEVERE: Connection error: > org.postgresql.util.PSQLException: Connection...
Using Redmine 3.4.2 with jruby I'm trying to migrate from MySQL to MSSQL, i used database migration tool from Microsoft. The migrated data seems fine, but I get this invalid...
We are currently failing a binary data rails test (test/cases/binary_test.rb#test_load_save) when using prepared statements because it is not being correctly converted from a string to binary data. This only occurs...
I am only getting the error when I do any kind of _insert_ statement. The error is coming from the _exec_insert_ method. I've got the transaction from the SQL Profiler...