2012-05-03 15:06:08 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Dan Bartram <daneybartram@gmail.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-11-03 16:51:39 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* DB Class
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-08-29 10:38:33 +04:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
2012-05-03 15:06:08 +04:00
|
|
|
// This means that they should be used by apps instead of the internal ownCloud classes
|
|
|
|
namespace OCP;
|
|
|
|
|
2012-05-19 12:36:57 +04:00
|
|
|
/**
|
|
|
|
* This class provides access to the internal database system. Use this class exlusively if you want to access databases
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use methods of \OCP\IDBConnection - \OC::$server->getDatabaseConnection()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.5.0
|
2012-05-19 12:36:57 +04:00
|
|
|
*/
|
2012-05-03 15:06:08 +04:00
|
|
|
class DB {
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Prepare a SQL query
|
2012-12-25 21:17:32 +04:00
|
|
|
* @param string $query Query string
|
2013-11-25 17:06:25 +04:00
|
|
|
* @param int $limit Limit of the SQL statement
|
|
|
|
* @param int $offset Offset of the SQL statement
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return \OC_DB_StatementWrapper prepared SQL query
|
2012-05-03 15:06:08 +04:00
|
|
|
*
|
2013-12-19 03:32:46 +04:00
|
|
|
* SQL query via Doctrine prepare(), needs to be execute()'d!
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use prepare() of \OCP\IDBConnection - \OC::$server->getDatabaseConnection()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.5.0
|
2012-05-03 15:06:08 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
static public function prepare( $query, $limit=null, $offset=null ) {
|
2017-07-22 22:10:16 +03:00
|
|
|
return \OC_DB::prepare($query, $limit, $offset);
|
2012-05-03 15:06:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Start a transaction
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use beginTransaction() of \OCP\IDBConnection - \OC::$server->getDatabaseConnection()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.5.0
|
2012-05-03 15:06:08 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function beginTransaction() {
|
2015-04-19 01:29:09 +03:00
|
|
|
\OC::$server->getDatabaseConnection()->beginTransaction();
|
2012-05-03 15:06:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Commit the database changes done during a transaction that is in progress
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use commit() of \OCP\IDBConnection - \OC::$server->getDatabaseConnection()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.5.0
|
2012-05-03 15:06:08 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function commit() {
|
2015-04-19 01:29:09 +03:00
|
|
|
\OC::$server->getDatabaseConnection()->commit();
|
2012-05-03 15:06:08 +04:00
|
|
|
}
|
|
|
|
|
2013-09-16 04:17:39 +04:00
|
|
|
/**
|
|
|
|
* returns the error code and message as a string for logging
|
|
|
|
* works with DoctrineException
|
|
|
|
* @return string
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use getError() of \OCP\IDBConnection - \OC::$server->getDatabaseConnection()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-09-16 04:17:39 +04:00
|
|
|
*/
|
2015-04-18 16:57:13 +03:00
|
|
|
public static function getErrorMessage() {
|
2015-04-19 01:29:09 +03:00
|
|
|
return \OC::$server->getDatabaseConnection()->getError();
|
2013-09-16 04:17:39 +04:00
|
|
|
}
|
|
|
|
|
2012-05-03 15:06:08 +04:00
|
|
|
}
|