You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From https://dev.mysql.com/doc/refman/5.6/en/charset-connection.html
A SET NAMES 'charset_name' statement is equivalent to these three statements:
SET character_set_client = charset_name;
SET character_set_results = charset_name;
SET character_set_connection = charset_name;
Therefore it is probably overkill to have 'SET NAMES'.
Also using both - and _ in variable names in useless as they translate
to the same variable.
0 commit comments