use AL32UTF8 charset to connect to oracle, fixes file name encoding problems

This commit is contained in:
Jörn Friedrich Dreyer 2012-09-20 21:07:54 +02:00
parent a4082a526f
commit 59a00f95c3
1 changed files with 1 additions and 0 deletions

View File

@ -226,6 +226,7 @@ class OC_DB {
'phptype' => 'oci8',
'username' => $user,
'password' => $pass,
'charset' => 'AL32UTF8',
);
if ($host != '') {
$dsn['hostspec'] = $host;