
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
@lanetix/pg-escape
Advanced tools
escape postgres queries which do not support stored procedures
Sprintf-style postgres query formatting and escape helper functions.
$ npm install pg-escape
var sql = escape('INSERT INTO %I VALUES(%L)', 'books', "O'Reilly");
console.log(sql);
yields:
INSERT INTO books VALUES('O''Reilly')
Format the given arguments.
Format as a simple string.
Format as a dollar quoted string
Format as an identifier.
Format as a literal.
%s formats the argument value as a simple string. A null value is treated as an empty string.%Q formats the argument value as a dollar quoted string. A null value is treated as an empty string.%I treats the argument value as an SQL identifier, double-quoting it if necessary. It is an error for the value to be null.%L quotes the argument value as an SQL literal. A null value is displayed as the string NULL, without quotes.%% In addition to the format specifiers described above, the special sequence %% may be used to output a literal % character.MIT
FAQs
escape postgres queries which do not support stored procedures
We found that @lanetix/pg-escape demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 32 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.