Skip to content

Instantly share code, notes, and snippets.

@weber
Created July 17, 2015 07:25
Show Gist options
  • Select an option

  • Save weber/bebdba2255456e50d87b to your computer and use it in GitHub Desktop.

Select an option

Save weber/bebdba2255456e50d87b to your computer and use it in GitHub Desktop.
Установка кодировки соединения nodejs mysql2
var sql1 = "SET CHARACTER SET utf8";
connection.query(sql1, function (err, result) {
var sql = "SET SESSION collation_connection ='utf8_general_ci";
connection.query(sql, function (err, result) {
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment