Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2013-07-23 21:55:47 +0400
committerArthur Schiwon <blizzz@owncloud.com>2013-07-23 21:55:47 +0400
commit4d46567dc0948cc5edb50b2acf365a3bc3aa9078 (patch)
treec7fcbfd37f890a47be1a6f9c4d61f3b94771d612 /lib/db.php
parent6c1e68acd8fbb98f8fbd54a38860481b4971bc28 (diff)
Revert "Oracle compat: enable appconfig.configvalue to store empty strings"
This reverts commit 6c1e68acd8fbb98f8fbd54a38860481b4971bc28.
Diffstat (limited to 'lib/db.php')
-rw-r--r--lib/db.php66
1 files changed, 13 insertions, 53 deletions
diff --git a/lib/db.php b/lib/db.php
index 17e28ffd82d..2dc20001d1f 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -185,7 +185,7 @@ class OC_DB {
} else {
$dsn='sqlsrv:Server='.$host.';Database='.$name;
}
- break;
+ break;
default:
return false;
}
@@ -365,12 +365,12 @@ class OC_DB {
$query = self::processQuery( $query );
self::connect();
-
+
if ($isManipulation === null) {
//try to guess, so we return the number of rows on manipulations
$isManipulation = self::isManipulation($query);
}
-
+
// return the result
if(self::$backend==self::BACKEND_MDB2) {
// differentiate between query and manipulation
@@ -401,11 +401,11 @@ class OC_DB {
}
return $result;
}
-
+
/**
* tries to guess the type of statement based on the first 10 characters
* the current check allows some whitespace but does not work with IF EXISTS or other more complex statements
- *
+ *
* @param string $sql
*/
static public function isManipulation( $sql ) {
@@ -427,7 +427,7 @@ class OC_DB {
}
return false;
}
-
+
/**
* @brief gets last value of autoincrement
* @param string $table The optional table name (will replace *PREFIX*) and add sequence suffix
@@ -583,25 +583,10 @@ class OC_DB {
$CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" );
self::connectScheme();
-
+
if(OC_Config::getValue('dbtype', 'sqlite')==='oci') {
//set dbname, it is unset because oci uses 'service' to connect
self::$schema->db->database_name=self::$schema->db->dsn['username'];
-
- $installedVersion = \OC_Config::getValue('version', '0.0.0');
- if (version_compare('5.0.15', $installedVersion, '<=')) {
- //configvalue in oc_appconfig must be allowed to contain NULL
- //because it is a CLOB, we need to move heaven and earth a bit
- //i.e. rename it and copy values
- $ociHandleAppconfig = true;
- $query = \OCP\DB::prepare('ALTER TABLE `*PREFIX*appconfig`
- RENAME COLUMN `configvalue` TO `configvalue_tmp`');
- $result = $query->execute();
- if(\OCP\DB::isError($result)) {
- OC_Log::write('core', 'Could not alter appconfig.'.
- ', DB upgrade may fail.', OC_Log::WARN);
- }
- }
}
// read file
@@ -651,31 +636,6 @@ class OC_DB {
OC_Log::write('core', $message, OC_Log::FATAL);
throw new Exception($message);
}
-
- if(isset($ociHandleAppconfig)) {
- $query = \OCP\DB::prepare('
- INSERT INTO `*PREFIX*appconfig`
- (`appid`, `configkey`, `configvalue`)
- SELECT `appid`, `configkey`, `configvalue_tmp` AS `configvalue`
- FROM `*PREFIX*appconfig`');
- $result = $query->execute();
- if(\OCP\DB::isError($result)) {
- OC_Log::write('core', 'Could not transfer appconfig.'.
- 'You may neet to copy values from appconfig.'.
- 'configvalue_tmp to appconfig.configvalue.', OC_Log::ERROR);
- } else {
- $query = \OCP\DB::prepare('ALTER TABLE `*PREFIX*appconfig`
- DROP COLUMN `configvalue_tmp`');
- $result = $query->execute();
- if(\OCP\DB::isError($result)) {
- OC_Log::write('core', 'Could not drop appconfig.'.
- 'configvalue_tmp, you can remove it by hand or just.'.
- ' leave it.', OC_Log::INFO);
- }
-
- }
- }
-
return true;
}
@@ -839,11 +799,11 @@ class OC_DB {
private static function fixLimitClauseForMSSQL($query) {
$limitLocation = stripos ($query, "LIMIT");
-
+
if ( $limitLocation === false ) {
return $query;
- }
-
+ }
+
// total == 0 means all results - not zero results
//
// First number is either total or offset, locate it by first space
@@ -890,7 +850,7 @@ class OC_DB {
}
return $query;
}
-
+
/**
* @brief drop a table
* @param string $tableName the table to drop
@@ -1072,7 +1032,7 @@ class PDOStatementWrapper{
} else {
$result = $this->statement->execute();
}
-
+
if ($result === false) {
return false;
}
@@ -1172,7 +1132,7 @@ class PDOStatementWrapper{
die ($entry);
}
}
-
+
/**
* provide numRows
*/