我想传递一个像这样的 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更改为“
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])] )