Skip to content

Commit

Permalink
Update queries.mdx link to markdown (#3192)
Browse files Browse the repository at this point in the history
If we use `<a>` here, the template does not visually identify it as a link, so I have switched to the markdown link format.
  • Loading branch information
iaurg committed Apr 6, 2024
1 parent 408bebd commit 3cde785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/features/queries.mdx
Expand Up @@ -27,7 +27,7 @@ console.log(res.rows[0])
```

<div class="alert alert-warning">
PostgreSQL does not support parameters for identifiers. If you need to have dynamic database, schema, table, or column names (e.g. in DDL statements) use <a href="https://www.npmjs.com/package/pg-format">pg-format</a> package for handling escaping these values to ensure you do not have SQL injection!
PostgreSQL does not support parameters for identifiers. If you need to have dynamic database, schema, table, or column names (e.g. in DDL statements) use [pg-format](https://www.npmjs.com/package/pg-format) package for handling escaping these values to ensure you do not have SQL injection!
</div>

Parameters passed as the second argument to `query()` will be converted to raw data types using the following rules:
Expand Down

0 comments on commit 3cde785

Please sign in to comment.