diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-12-08 18:00:42 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-12-09 17:26:53 +0100 |
commit | 778d8dbafd982a018c7425f660f59c7ecaa97d2b (patch) | |
tree | 725d73330483bc04ceb1c4032b0a440cb1e7d3c6 /lib/private/db.php | |
parent | 8af3991d0cf129316b177731686af547fe39a698 (diff) | |
download | nextcloud-server-778d8dbafd982a018c7425f660f59c7ecaa97d2b.tar.gz nextcloud-server-778d8dbafd982a018c7425f660f59c7ecaa97d2b.zip |
Add tableExists to public db api
Diffstat (limited to 'lib/private/db.php')
-rw-r--r-- | lib/private/db.php | 39 |
1 files changed, 2 insertions, 37 deletions
diff --git a/lib/private/db.php b/lib/private/db.php index 9387cc48457..dc25092e276 100644 --- a/lib/private/db.php +++ b/lib/private/db.php @@ -325,42 +325,7 @@ class OC_DB { * @throws \OC\DatabaseException */ public static function tableExists($table) { - - $table = OC_Config::getValue('dbtableprefix', 'oc_' ) . trim($table); - - $dbType = OC_Config::getValue( 'dbtype', 'sqlite' ); - switch ($dbType) { - case 'sqlite': - case 'sqlite3': - $sql = "SELECT name FROM sqlite_master " - . "WHERE type = 'table' AND name = ? " - . "UNION ALL SELECT name FROM sqlite_temp_master " - . "WHERE type = 'table' AND name = ?"; - $result = \OC_DB::executeAudited($sql, array($table, $table)); - break; - case 'mysql': - $sql = 'SHOW TABLES LIKE ?'; - $result = \OC_DB::executeAudited($sql, array($table)); - break; - case 'pgsql': - $sql = 'SELECT tablename AS table_name, schemaname AS schema_name ' - . 'FROM pg_tables WHERE schemaname NOT LIKE \'pg_%\' ' - . 'AND schemaname != \'information_schema\' ' - . 'AND tablename = ?'; - $result = \OC_DB::executeAudited($sql, array($table)); - break; - case 'oci': - $sql = 'SELECT TABLE_NAME FROM USER_TABLES WHERE TABLE_NAME = ?'; - $result = \OC_DB::executeAudited($sql, array($table)); - break; - case 'mssql': - $sql = 'SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = ?'; - $result = \OC_DB::executeAudited($sql, array($table)); - break; - default: - throw new \OC\DatabaseException("Unknown database type: $dbType"); - } - - return $result->fetchOne() === $table; + $connection = \OC::$server->getDatabaseConnection(); + return $connection->tableExists($table); } } |