postgresql 绑定消息提供1个参数,但预准备语句“”需要2个参数

pxyaymoc  于 10个月前  发布在  PostgreSQL
关注(0)|答案(4)|浏览(186)

我有一个数据库goods,其中有两列id jsonb primary_keyname。使用以下查询:

const query = 'INSERT INTO "goods" (id, name) VALUES ($1, $2)'

字符串
连同下列数据:

const data = {id: 1, name: "milk"};


给了我以下错误:

{ [error: bind message supplies 1 parameters, but prepared statement "" requires 2]
  name: 'error',
  length: 130,
  severity: 'ERROR',
  code: '08P01',
  detail: undefined,
  hint: undefined,
  position: undefined,
  internalPosition: undefined,
  internalQuery: undefined,
  where: undefined,
  schema: undefined,
  table: undefined,
  column: undefined,
  dataType: undefined,
  constraint: undefined,
  file: 'postgres.c',
  line: '1556',
  routine: 'exec_bind_message' }


我有一个postgres数据库设置,通过pg.Pool()连接并执行JavaScript来插入我的数据。
编辑:这是我准备查询的方式:

pool.query(query, [data]).then(() => {
    console.log("ok")
})
.catch(error => {
    console.log(error)
});


编辑2:
使用以下命令:

const query = 'INSERT INTO "goods" (id, name) VALUES ($1, $2)'
const data = JSON.stringify([1, "milk"]);
pool.query(query, data).then(() => {
    console.log("ok")
})
.catch(error => {
    console.log(error)
});


返回以下错误:[TypeError: self.values.map is not a function]

xwbd5t1u

xwbd5t1u1#

根据文档,参数必须是JavaScript对象(即数组)。因此您不需要对data进行字符串化
试试这个:

const query = 'INSERT INTO goods (id, name) VALUES ($1, $2)'

const data = [1, "milk"];

pool.query(query, data).then(....)

字符串

pool.query({ 
    text: 'INSERT INTO goods (id, name) VALUES ($1, $2)', 
    values: [1, 'milk']
 }).then(...)

chy5wohz

chy5wohz2#

根据文档,Prepared Statement需要一个值数组,而不是一个具有属性的对象,即您的数据必须是:const data = [1, "milk"];

8qgya5xd

8qgya5xd3#

我的问题是,我把我的占位符值在单引号。
因此,而不是:

const query = {
    text: "SELECT email, password from users WHERE email='$1'",
    values: [data.email],
};

字符串
这样做:

const query = {
     text: "SELECT email, password from users WHERE email=$1", // -> here is the difference
     values: [data.email],
};

knsnq2tg

knsnq2tg4#

我在使用slonik时也遇到了同样的问题。

不要使用插值

别这样

connection.query(sql`
  SELECT 1
  FROM foo
  WHERE bar = ${baz}
`);

字符串

使用值占位符

这样做-用单引号 Package 变量

connection.query(sql`
  SELECT 1
  FROM foo
  WHERE bar = ${'baz'}
`);

相关问题