We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f83972 commit 107b66dCopy full SHA for 107b66d
1 file changed
README.md
@@ -120,7 +120,7 @@ argument to `true` in order to keep the string as a literal identifier:
120
121
```js
122
var sorter = 'date.2';
123
-var sql = 'SELECT * FROM posts ORDER BY ' + connection.escapeId(sorter, true);
+var sql = 'SELECT * FROM posts ORDER BY ' + SqlString.escapeId(sorter, true);
124
console.log(sql); // SELECT * FROM posts ORDER BY `date.2`
125
```
126
0 commit comments