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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/PluginsFunctions/Sql.php')
-rw-r--r--core/PluginsFunctions/Sql.php85
1 files changed, 76 insertions, 9 deletions
diff --git a/core/PluginsFunctions/Sql.php b/core/PluginsFunctions/Sql.php
index 5cd5ff6784..aa219d619b 100644
--- a/core/PluginsFunctions/Sql.php
+++ b/core/PluginsFunctions/Sql.php
@@ -11,15 +11,64 @@
*/
/**
+ * SQL wrapper
+ *
* @package PluginsFunctions
*/
class Piwik_Sql
{
+ static private function getDb()
+ {
+ $db = null;
+ if(!empty($GLOBALS['PIWIK_TRACKER_MODE']))
+ {
+ $db = Piwik_Tracker::getDatabase();
+ }
+ if($db === null)
+ {
+ $db = Zend_Registry::get('db');
+ }
+ return $db;
+ }
+
+ static public function exec($sql)
+ {
+ return self::getDb()->exec($sql);
+ }
+
+ static public function query($sql, $parameters = array())
+ {
+ return self::getDb()->query($sql, $parameters);
+ }
+
+ static public function fetchAll($sql, $parameters = array())
+ {
+ return self::getDb()->fetchAll($sql, $parameters);
+ }
+
+ static public function fetchRow($sql, $parameters = array())
+ {
+ return self::getDb()->fetchRow($sql, $parameters);
+ }
+
+ static public function fetchOne($sql, $parameters = array())
+ {
+ return self::getDb()->fetchOne($sql, $parameters);
+ }
}
-function Piwik_Exec( $sqlQuery )
+/**
+ * Executes an unprepared SQL query on the DB. Recommended for DDL statements, e.g., CREATE/DROP/ALTER.
+ * The return result is DBMS-specific. For MySQLI, it returns the number of rows affected. For PDO, it returns the Zend_Db_Statement object
+ * If you want to fetch data from the DB you should use the function Piwik_FetchAll()
+ *
+ * @param string $sqlQuery
+ * @param array Parameters to bind in the query, array( param1 => value1, param2 => value2)
+ * @return integer|Zend_Db_Statement
+ */
+function Piwik_Exec($sqlQuery)
{
- return Zend_Registry::get('db')->exec( $sqlQuery );
+ return Piwik_Sql::exec($sqlQuery);
}
/**
@@ -32,25 +81,43 @@ function Piwik_Exec( $sqlQuery )
* @param array Parameters to bind in the query, array( param1 => value1, param2 => value2)
* @return Zend_Db_Statement
*/
-function Piwik_Query( $sqlQuery, $parameters = array())
+function Piwik_Query($sqlQuery, $parameters = array())
{
- return Zend_Registry::get('db')->query( $sqlQuery, $parameters);
+ return Piwik_Sql::query($sqlQuery, $parameters);
}
/**
- * Executes the SQL Query and fetches all the rows from the database
+ * Executes the SQL Query and fetches all the rows from the database query
*
* @param string $sqlQuery
- * @param array Parameters to bind in the query, array( param1 => value1, param2 => value2)
+ * @param array $parameters Parameters to bind in the query, array( param1 => value1, param2 => value2)
* @return array (one row in the array per row fetched in the DB)
*/
function Piwik_FetchAll( $sqlQuery, $parameters = array())
{
- return Zend_Registry::get('db')->fetchAll( $sqlQuery, $parameters );
+ return Piwik_Sql::fetchAll($sqlQuery, $parameters);
}
-function Piwik_FetchOne( $sqlQuery, $parameters = array())
+/**
+ * Fetches first row of result from the database query
+ *
+ * @param string $sqlQuery
+ * @param array $parameters Parameters to bind in the query, array( param1 => value1, param2 => value2)
+ * @return array
+ */
+function Piwik_FetchRow($sqlQuery, $parameters = array())
{
- return Zend_Registry::get('db')->fetchOne( $sqlQuery, $parameters );
+ return Piwik_Sql::fetchRow($sqlQuery, $parameters);
}
+/**
+ * Fetches first column of first row of result from the database query
+ *
+ * @param string $sqlQuery
+ * @param array $parameters Parameters to bind in the query, array( param1 => value1, param2 => value2)
+ * @return string
+ */
+function Piwik_FetchOne( $sqlQuery, $parameters = array())
+{
+ return Piwik_Sql::fetchOne($sqlQuery, $parameters);
+}