mysql-native v3.0.0
API Reference Home: [This Version] [Latest Version] [Other Versions]
Module mysql.escape
Escape special characters in MySQL strings.
Note, it is strongly recommended to use prepared statements instead of relying
on manual escaping, as prepared statements are always safer, better and more
reliable (see mysql
). But if you absolutely must escape manually,
the functionality is provided here.
Functions
Name | Description |
---|---|
mysqlEscape(input)
|
Helper function to easily construct a escape wrapper struct |
mysql_escape(input, buffer)
|
Simple escape function for dangerous SQL characters |
Structs
Name | Description |
---|---|
MysqlEscape
|
Struct to wrap around a string so it can be passed to formattedWrite and be properly escaped all using the buffer that formattedWrite provides. |