DB 로그인을 utf8이 아니라 utf8mb4로 변경

This commit is contained in:
2018-04-01 00:35:35 +09:00
parent 3ea95da4a6
commit 0f97ae8da9
6 changed files with 8 additions and 21 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ if(!file_exists(ROOT.'/d_setting/.htaccess')){
//DB 접근 권한 검사
$rootDB = new \MeekroDB($host,$username,$password,$dbName,$port,'utf8');
$rootDB = new \MeekroDB($host,$username,$password,$dbName,$port,'utf8mb4');
$rootDB->connect_options[MYSQLI_OPT_INT_AND_FLOAT_NATIVE] = true;
$rootDB->throw_exception_on_nonsql_error = false;