We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cbf163 commit 4e64398Copy full SHA for 4e64398
README.md
@@ -24,6 +24,10 @@ var SqlString = require('sqlstring');
24
25
### Escaping query values
26
27
+**Caution** These methods of escaping values only works when the
28
+[NO_BACKSLASH_ESCAPES](https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#sqlmode_no_backslash_escapes)
29
+SQL mode is disabled (which is the default state for MySQL servers).
30
+
31
In order to avoid SQL Injection attacks, you should always escape any user
32
provided data before using it inside a SQL query. You can do so using the
33
`SqlString.escape()` method:
0 commit comments