]> source.dussan.org Git - nextcloud-server.git/commitdiff
don't use sequence suffix, MDB2 handles that internally
authorJörn Friedrich Dreyer <jfd@butonic.de>
Fri, 14 Jun 2013 11:43:50 +0000 (13:43 +0200)
committerJörn Friedrich Dreyer <jfd@butonic.de>
Fri, 14 Jun 2013 11:43:50 +0000 (13:43 +0200)
lib/db.php

index 7c75dc6786825eff1906cf033e5c5aed9101275d..02200636b4e733a4bd681f7f11af0c60b7967ff4 100644 (file)
@@ -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 );