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
The mysql connection string mysqli://user:password@host/database?charset=utf8 allows to add the charset in the query string.
Use $url["query"] in public parseConnection to fetch the query string and look for the charset-parameter using parse_str($url["query"], $array) ... isset($array["charset"]) ...
And apply it to the connection:
$this->getDb()->set_charset(...);
mysql_set_charset(...);
The text was updated successfully, but these errors were encountered:
The mysql connection string mysqli://user:password@host/database?charset=utf8 allows to add the charset in the query string.
Use $url["query"] in public parseConnection to fetch the query string and look for the charset-parameter using parse_str($url["query"], $array) ... isset($array["charset"]) ...
And apply it to the connection:
$this->getDb()->set_charset(...);
mysql_set_charset(...);
The text was updated successfully, but these errors were encountered: