From b6e664c44510b6f4a1021e81654cf58c6a3d70fb Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 14 Jun 2013 13:43:50 +0200 Subject: [PATCH] don't use sequence suffix, MDB2 handles that internally --- lib/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db.php b/lib/db.php index 7c75dc67868..02200636b4e 100644 --- a/lib/db.php +++ b/lib/db.php @@ -407,7 +407,7 @@ class OC_DB { $row = $query->execute()->fetchRow(); return $row['id']; } - if( $type == 'mssql' ) { + if( $type == 'mssql' || $type == 'oci' ) { if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); $table = str_replace( '*PREFIX*', $prefix, $table ); -- 2.39.5