我的 Ruby 文件中有一个查询:
@mastertest = connection.execute("select code_ver, date from mastertest")
@mastertest
它像二维数组一样对待,因为当我打印行时,我得到:
@mastertest.each do |row|
puts row[0] : row[1]
end
这将打印所有内容code_ver
和date
每一行。
我无法对其执行任何其他操作。我无法对数组进行排序,也无法执行数组的深拷贝。我猜这是Ruby考虑的某种MySQL2类型。如何将其转换为普通的二维数组?