数据库
首页 > 数据库> > ActiveRecord ::基本SQL结果对象类型在MySQL和PostgreSQL中不同

ActiveRecord ::基本SQL结果对象类型在MySQL和PostgreSQL中不同

作者:互联网

我错过了什么吗?相同的控制台,相同的代码库,不同的数据库连接结果:返回了不同的对象类型.如果使用MySQL,我们得到一个数组数组,如果使用PostgreSQL,我们得到一个哈希数组.

示例类

class User < ActiveRecord::Base
   ...
end

class Series < ActiveRecord::Base
   establish_connection postgres_database_hash
   ...
end

使用MySQL连接

> User.connection.execute('SELECT * from users limit 2').to_a
   (211.0ms)  SELECT * from users limit 2
 => [[1, "jmetta", "jmetta@gmail.com"], [2, "johnmetta", "jmetta+test@gmail.com"]]

与Postgres连接

> Series.connection.execute('SELECT * from series limit 2').to_a
   (107.1ms)  SELECT * from series limit 2
 => [{"id"=>"29", "enr_id"=>"114118", "ent_id"=>"164",}, {"id"=>"30", "enr_id"=>"114110", "ent_id"=>"164"}]

结尾

似乎在这个抽象层次上,要求to_a给出结果,结果应该是相同的.

解决方法:

您缺少的是执行是与底层数据库驱动程序的非常低级别的连接,这对于将SQL DDL(Data Definition Language)发送到数据库以手动更改表,添加AR不理解的约束和索引最有用.等等.如果要将原始查询发送到数据库并获得原始结果,则应使用稍高的级别select_rows

User.connection.select_rows('SELECT * from users limit 2').each do |row|
  # `row` is an Array of Strings here
end

select_rows调用应该为您提供任何数据库的字符串数组.

execute将返回底层驱动程序返回的内容,select_rows将返回一致的内容.

标签:ruby-on-rails,mysql,postgresql,rails-activerecord
来源: https://codeday.me/bug/20190831/1773702.html