Hacker News new | ask | show | jobs
by MuffinFlavored 121 days ago
any reason why you did

    const { rows } = client.query(
      "select id, name, last_modified from tbl where id = $1",
      [42],
    );
instead of

    const { rows } = client.query(
      "select id, name, last_modified from tbl where id = :id",
      { id: 42 },
    );
1 comments

That is the way node-postgres works. pg-typesafe adds type safety but doesn’t change the node-postgres methods