当前位置 : 主页 > 编程语言 > ruby >

ruby-on-rails – Ruby PG gem使用数组作为exec_params的参数

来源:互联网 收集:自由互联 发布时间:2021-06-23
我想传递一个像这样的 ruby数组值: sql = "SELECT $1"User.connection.raw_connection.exec_params(sql, [[1,2]]) 这回来了 PG::IndeterminateDatatype: ERROR: could not determine data type of parameter $1 如果我将sql更改为“
我想传递一个像这样的 ruby数组值:

sql = "SELECT $1"
User.connection.raw_connection.exec_params(sql, [[1,2]])

这回来了

PG::IndeterminateDatatype: ERROR:  could not determine data type of parameter $1

如果我将sql更改为“SELECT $1 :: int []”,我得到PG :: InvalidTextRepresentation:ERROR:整数的输入语法无效:“[1,2]”.

有没有办法将ruby数组传递给exec_params并将其转换为PostgreSQL数组?

您可以使用编码器来执行此操作:

raw_connection.exec(
  "select $1::int[]",
  [PG::TextEncoder::Array.new.encode([1, 2])]
)
网友评论