13

出于实际原因,例如在带有 PDO 的 php 中,我曾经在我的 SQL 查询中命名我的参数。

那么我可以在 node-postgres 模块中使用命名参数吗?

目前,我在互联网上看到了许多示例和文档,其中显示了如下查询:

client.query("SELECT * FROM foo WHERE id = $1 AND color = $2", [22, 'blue']);

但这也是正确的吗?

client.query("SELECT * FROM foo WHERE id = :id AND color = :color", {id: 22, color: 'blue'});

或这个

client.query("SELECT * FROM foo WHERE id = ? AND color = ?", [22, 'blue']);

我之所以这样问,是因为编号参数$n在动态构建查询的情况下对我没有帮助。

4

4 回答 4

7

您正在尝试做的事情有一个图书馆。就是这样:

var sql = require('yesql').pg

client.query(sql("SELECT * FROM foo WHERE id = :id AND color = :color")({id: 22, color: 'blue'}));
于 2016-11-16T20:42:07.807 回答
3

QueryConvert 进行救援。它将接受一个参数化的 sql 字符串和一个对象,并将其转换为符合 pg 的查询配置。

type QueryReducerArray = [string, any[], number];
export function queryConvert(parameterizedSql: string, params: Dict<any>) {
    const [text, values] = Object.entries(params).reduce(
        ([sql, array, index], [key, value]) => [sql.replace(`:${key}`, `$${index}`), [...array, value], index + 1] as QueryReducerArray,
        [parameterizedSql, [], 1] as QueryReducerArray
    );
    return { text, values };
}

用法如下:

client.query(queryConvert("SELECT * FROM foo WHERE id = :id AND color = :color", {id: 22, color: 'blue'}));
于 2021-11-19T18:46:28.613 回答
1

不完全是OP所要求的。但你也可以使用:

import SQL from 'sql-template-strings';

client.query(SQL`SELECT * FROM unicorn WHERE color = ${colorName}`)

它使用标签函数结合模板文字来嵌入值

于 2022-01-29T08:41:16.503 回答
1

我一直在使用 nodejs 和 postgres。我通常执行这样的查询:

client.query("DELETE FROM vehiculo WHERE vehiculo_id= $1", [id], function (err, result){ //Delete a record in de db
    if(err){
        client.end();//Close de data base conection
      //Error code here
    }
    else{
      client.end();
      //Some code here
    }
  });
于 2015-09-16T13:45:09.310 回答