Module | Sequel::JDBC::Postgres |
In: |
lib/sequel/adapters/jdbc/postgresql.rb
|
Return PostgreSQL array types as ruby Arrays instead of JDBC PostgreSQL driver-specific array type. Only used if the database does not have a conversion proc for the type.
# File lib/sequel/adapters/jdbc/postgresql.rb, line 20 20: def self.RubyPGArray(r, i) 21: if v = r.getArray(i) 22: v.array.to_ary 23: end 24: end