CodeIgniter Forums
Multiple dbcollat - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Multiple dbcollat (/showthread.php?tid=74939)



Multiple dbcollat - nicolas33770 - 11-27-2019

Hello,

I have a technical question. I want to use ion_auth on my project, the tables of the database are in utf8_general_ci on ion_auth, while the rest of my tables of my project are in utf8mb4_unicode_ci.

If I keep the following configuration of the config / database.php file, can this be a problem ? Or I need to convert all utf8_general_ci to utf8mb4_unicode_ci ? this will not be a problem if I do this conversion?

Thanks

PHP Code:
'char_set' => 'utf8',
'dbcollat' => 'utf8mb4_unicode_ci'



RE: Multiple dbcollat - jreklund - 11-27-2019

I would convert them.


RE: Multiple dbcollat - nicolas33770 - 11-28-2019

Thanks, it's ok . it seems to work