Does
mysql_query('SET NAMES `utf8`;', $link);
is the same that
$db['default']['char_set'] = 'utf8';
OR
$db['default']['dbcollat'] = 'utf8_general_ci';
in “application\config\database.php” on Codeigniter? If not, how can I do it in Codeigniter?
