From 59a00f95c355474b2b1e69cdd743acd9d159ff9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Sep 2012 21:07:54 +0200 Subject: [PATCH] use AL32UTF8 charset to connect to oracle, fixes file name encoding problems --- lib/db.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/db.php b/lib/db.php index 9c10512350..1f0593b080 100644 --- a/lib/db.php +++ b/lib/db.php @@ -226,6 +226,7 @@ class OC_DB { 'phptype' => 'oci8', 'username' => $user, 'password' => $pass, + 'charset' => 'AL32UTF8', ); if ($host != '') { $dsn['hostspec'] = $host;