enable UTF-8 charset on mssql

disable MDB2_PORTABILITY_EMPTY_TO_NULL for mssql to allow insert of empty string to no null fields
This commit is contained in:
Thomas Mueller 2013-03-12 15:33:37 +01:00
parent 9d4d399aa3
commit ec16853112
1 changed files with 4 additions and 2 deletions

View File

@ -292,8 +292,10 @@ class OC_DB {
'username' => $user,
'password' => $pass,
'hostspec' => $host,
'database' => $name
);
'database' => $name,
'charset' => 'UTF-8'
);
$options['portability'] = $options['portability'] - MDB2_PORTABILITY_EMPTY_TO_NULL;
break;
default:
return false;