summaryrefslogtreecommitdiffstats
path: root/lib/db.php
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2012-09-20 21:07:54 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2012-09-20 21:07:54 +0200
commit59a00f95c355474b2b1e69cdd743acd9d159ff9e (patch)
tree23a2dfbf438860253a4ced8ce2b6f364aec91957 /lib/db.php
parenta4082a526f02b7c03940582973a40d4bab8f249f (diff)
downloadnextcloud-server-59a00f95c355474b2b1e69cdd743acd9d159ff9e.tar.gz
nextcloud-server-59a00f95c355474b2b1e69cdd743acd9d159ff9e.zip
use AL32UTF8 charset to connect to oracle, fixes file name encoding problems
Diffstat (limited to 'lib/db.php')
-rw-r--r--lib/db.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/db.php b/lib/db.php
index 9c10512350f..1f0593b0804 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;