Implemented renewed querybuilder and a better databasemodel. Database utilities can from now on be added to this module.

Fixes #46
This commit is contained in:
Abel Hoogeveen 2015-05-06 21:25:57 +02:00
parent c046b0867b
commit aab34844ee
9 changed files with 868 additions and 408 deletions

View File

@ -5,4 +5,5 @@
'username' => '',
'password' => '',
'prefix' => '',
'debug' => false,
) ;

View File

@ -8,8 +8,7 @@ class Example extends Model{
public function __construct(&$core){
parent::__construct($core);
$this->setType('techfuze/databasemodel', 'DatabaseModel');
$this->fields = array('id', 'key', 'value');
$this->setType('techfuze/databaseutils', 'Model');
$this->table = 'example';
}
}

View File

@ -7,21 +7,13 @@ class Interpret extends Model {
public function __construct(&$core){
parent::__construct($core);
$this->setType('techfuze/databasemodel', 'DatabaseModel');
$this->fields = array();
$this->setType('techfuze/databaseutils', 'Model');
$this->table = '';
}
public function table($name) {
$this->table = $name;
// Get tables
$sth = $this->mods->database->prepare("DESCRIBE " . $this->table);
$sth->execute();
$table_fields = $sth->fetchAll(\PDO::FETCH_COLUMN);
// Append to model
$this->fields = $table_fields;
}
}

View File

@ -166,7 +166,11 @@ class Core {
// Return a reference
return $this->mods->{strtolower($cfg->module_name)} = &$CLASS;
}
} else {
throw new CoreException("Could not load mod '".$name."'. Invalid Configuration", 1);
}
} else {
throw new CoreException("Could not load mod '".$name."'. Not found", 1);
}
}

View File

@ -1,376 +0,0 @@
<?php
namespace Module;
use \FuzeWorks\Module;
use \FuzeWorks\ModelServer;
class DatabaseModel extends Module implements ModelServer {
public $fields = array();
public $primary = 'id';
public $table = '';
public function __construct(&$core){
parent::__construct($core);
}
public function onLoad() {}
public function giveModel($type) {
return new DatabaseModel($this->core);
}
public function select(){
$select = '';
$where = '';
$order = '';
$limit = '';
$other = '';
$args = func_get_args();
$binds = array();
// Only one argument given
if(func_num_args() >= 1){
// Null: select all fields
if($args[0] === null){
$fields = $this->fields;
}else{
$fields = $args[0];
}
// Convert array to string
if(is_array($fields)){
// Slightly faster as implode()
foreach($fields as $index => $field){
$select .= ' `'.$field.($index == (count($fields)-1) ? '`' : '`,');
}
}elseif(is_numeric($fields)){
// Build where based on primary key
$select= '*';
$where = 'WHERE `'.$this->primary.'` = '.$fields;
}else{
// Directly use it as $select
$select = $fields;
}
if(func_num_args() >= 2){
// Convert array to string
if($args[1] !== null)
if(is_array($fields)){
$where = 'WHERE';
// Implode the fields into a string
foreach($args[1] as $field => $value){
$token1 = 'AND';
$token2 = '=';
// Operator feautures
if(strpos($field, '!') !== false){
$token2 = '<>';
$field = str_replace('!', '', $field);
}
if(strpos($field, '/') !== false){
$token1 = 'OR';
$field = str_replace('/', '', $field);
}
if (strpos($field, '>') !== false) {
$token2 = '>';
$field = str_replace('>', '', $field);
}
if (strpos($field, '<') !== false) {
$token2 = '<';
$field = str_replace('<', '', $field);
}
if (strpos($field, '=>') !== false) {
$token2 = '=>';
$field = str_replace('=>', '', $field);
}
if (strpos($field, '<=') !== false) {
$token2 = '<=';
$field = str_replace('<=', '', $field);
}
$where .= ($where === 'WHERE' ? '' : $token1).' `'.$field.'` '.$token2.' :'.$field.' ';
$binds[$field] = $value;
}
}else{
// Directly use it as $select
$where = $args[1];
}
if(func_num_args() >= 3){
// Order
if($args[2] !== null)
if(is_array($args[2])){
$order = 'ORDER BY';
foreach($args[2] as $index => $field){
$mode = 'ASC';
if(substr($field, 0, 1) === '-'){
$field = substr($field, 1);
$mode = 'DESC';
}
$order .= ' `'.$field.'` '.$mode.($index == (count($args[2])-1) ? '' : ',');
}
}else{
$order = 'ORDER BY '.$args[2];
}
if(func_num_args() >= 4){
// Limit
if($args[3] !== null)
if(is_array($args[3])){
$limit = 'LIMIT '.$args[3][0].','.$args[3][1];
}elseif($args[3]){
$limit = 'LIMIT '.$args[3];
}
if(func_num_args() >= 5){
// Other
$other = $args[4];
}
}
}
}
}else{
$select = '*';
}
$query = 'SELECT '.$select.' FROM `'.$this->table.'` '.$where.' '.$order.' '.$limit.' '.$other;
try{
$sth = $this->mods->database->prepare($query);
$sth->execute($binds);
}catch (\PDOException $e){
throw new \Exception('Could not execute SQL-query due PDO-exception '.$e->getMessage());
}
// Fetch results
$result = $sth->fetchAll(\PDO::FETCH_ASSOC);
return $result;
}
public function insert($arr){
$query = '';
$fields= '';
$values= '';
$i = 0;
foreach($arr as $index => $value){
$i++;
$fields .= '`'.$index.'`'.($i == count($arr) ? '' : ', ');
$values .= ':'.$index.($i == count($arr) ? '' : ', ');
}
$query = 'INSERT INTO `'.$this->table.'` ('.$fields.')VALUES('.$values.')';
try{
$sth = $this->mods->database->prepare($query);
$sth->execute($arr);
}catch (\PDOException $e){
throw new \Exception('Could not execute SQL-query due PDO-exception '.$e->getMessage());
}
}
public function delete(){
$query = '';
$where = '';
$args = func_get_args();
// Convert array to string
if(func_num_args() >= 1){
// Where
if($args[0] !== null)
if(is_array($args[0])){
$where = 'WHERE';
// Implode the fields into a string
foreach($args[0] as $field => $value){
$token1 = 'AND';
$token2 = '=';
if(strpos($field, '!') !== false){
$token2 = '<>';
$field = str_replace('!', '', $field);
}
if(strpos($field, '/') !== false){
$token1 = 'OR';
$field = str_replace('/', '', $field);
}
$where .= ($where === 'WHERE' ? '' : $token1).' `'.$field.'` '.$token2.' :'.$field.' ';
$binds[$field] = $value;
}
}elseif(is_numeric($args[0])){
// Build where based on primary key
$where = 'WHERE `'.$this->primary.'` = '.$args[0];
}else{
// Directly use it as $select
$where = $args[1];
}
if(func_num_args() >= 2){
// Limit
if($args[1] !== null)
if(is_array($args[1])){
$limit = 'LIMIT '.$args[1][0].','.$args[1][1];
}elseif($args[1]){
$limit = 'LIMIT '.$args[1];
}
}
}
$query = 'DELETE FROM `'.$this->table.'` '.$where.' '.$limit;
try{
$sth = $this->mods->database->prepare($query);
$sth->execute($binds);
}catch (\PDOException $e){
throw new \Exception('Could not execute SQL-query due PDO-exception '.$e->getMessage());
}
}
public function update(){
$query = '';
$fields= '';
$where = '';
$args = func_get_args();
// Convert array to string
if(func_num_args() >= 1){
// Update
if($args[0] !== null)
if(is_array($args[0])){
// Slightly faster as implode()
$i = 0;
foreach($args[0] as $field => $value){
$i ++;
$fields .= ' `'.$field.'` = :insert_'.$field.($i == (count($args[0])) ? '' : ',');
$binds['insert_'.$field] = $value;
}
}else{
// Directly use it as $select
$fields = $args[0];
}
if(func_num_args() >= 2){
// Where
if($args[1] !== null)
if(is_array($args[1])){
$where = 'WHERE';
// Implode the fields into a string
foreach($args[1] as $field => $value){
$token1 = 'AND';
$token2 = '=';
if(strpos($field, '!') !== false){
$token2 = '<>';
$field = str_replace('!', '', $field);
}
if(strpos($field, '/') !== false){
$token1 = 'OR';
$field = str_replace('/', '', $field);
}
$where .= ($where === 'WHERE' ? '' : $token1).' `'.$field.'` '.$token2.' :'.$field.' ';
$binds[$field] = $value;
}
}elseif(is_numeric($args[1])){
// Build where based on primary key
$where = 'WHERE `'.$this->primary.'` = '.$args[1];
}else{
// Directly use it as $select
$where = $args[1];
}
if(func_num_args() >= 3){
// Limit
if($args[2] !== null)
if(is_array($args[2])){
$limit = 'LIMIT '.$args[2][0].','.$args[2][1];
}elseif($args[2]){
$limit = 'LIMIT '.$args[2];
}
} else {
$limit = "";
}
}
}
$query = 'UPDATE `'.$this->table.'` SET '.$fields.' '.$where.' '.$limit;
try{
$sth = $this->mods->database->prepare($query);
$sth->execute($binds);
}catch (\PDOException $e){
throw new \Exception('Could not execute SQL-query due PDO-exception '.$e->getMessage());
}
}
public function __call($name, $params) {
return call_user_func_array(array($this->mods->database, $name), $params);
}
}

View File

@ -1,21 +0,0 @@
<?php
return array(
'module_class' => 'Module\DatabaseModel',
'module_file' => 'class.model.php',
'module_name' => 'databasemodel',
'abstract' => false,
'dependencies' => array('techfuze/database'),
'name' => 'DatabaseModel',
'description' => 'Abstract type for easy database queries',
'author' => 'TechFuze',
'version' => '1.0.0',
'website' => 'http://fuzeworks.techfuze.net/',
'date_created' => '26-02-2015',
'date_updated' => '26-02-2015',
'enabled' => true,
);

View File

@ -0,0 +1,163 @@
<?php
namespace Module\DatabaseUtils;
use \FuzeWorks\Module;
use \FuzeWorks\Bus;
use \FuzeWorks\ModelServer;
use \FuzeWorks\DatabaseException;
class Main extends Module implements ModelServer {
public $fields = array();
public $primary = 'id';
public $table = '';
public function __construct(&$core){
parent::__construct($core);
}
public function onLoad() {
require_once($this->getModulePath() . '/class.query.php');
}
public function giveModel($type) {
return new Model($this->core);
}
}
/**
* Class Model
*
* Models provide an easy connection to database tables. Each table requires its own model. You don't need to worry about your queries or syntax anymore, because
* models will handle queries and error handling. Because of this, you can freely change your database infrastructure without fear of needing to change your
* table names at thousands of places. The model is the only place where you have to change your database names or fields.
*
* Models also allow custom methods to be created on them. You can use those methods to create specific operations or joins and then use the newly created method
* everywhere in your project. The code is at one place, the usages all over your project. Isn't that great?
*
* @package Module\DatabaseUtils
*/
class Model extends Bus {
/**
* @var string The name of the database table
*/
public $table = '';
/**
* Traditional query interface
*
* @param string $query
* @param null $binds
* @return mixed returns fetched rows if available, otherwise returns number of affected rows
* @throws DatabaseException
*/
public function query($query, $binds = null){
if($this->config->database->debug)
$this->logger->log("Query: ".$query, "Database Model");
try{
$sth = $this->mods->database->prepare($query);
if($binds === null){
$sth->execute();
}else{
$sth->execute($binds);
}
}catch (\PDOException $e){
throw new DatabaseException('Could not execute SQL-query due PDO-exception '.$e->getMessage());
}
if($sth->columnCount() > 0){
// Fetch results
$result = $sth->fetchAll(\PDO::FETCH_ASSOC);
}else{
// Fetch number of affected rows
$result = $sth->rowCount();
}
return $result;
}
/**
* The default table will be set to $this->table
* @see Query::select
* @return Query
*/
public function select(){
$queryBuilder = new Query($this->core);
$queryBuilder->setTable($this->table);
call_user_func_array(array($queryBuilder, 'select'), func_get_args());
$queryBuilder->from();
return $queryBuilder;
}
/**
* The default table will be set to $this->table
* @see Query::update
* @return Query
*/
public function update(){
$queryBuilder = new Query($this->core);
$queryBuilder->setTable($this->table);
call_user_func_array(array($queryBuilder, 'update'), func_get_args());
return $queryBuilder;
}
/**
* The default table will be set to $this->table
* @see Query::delete
* @return Query
*/
public function delete(){
$queryBuilder = new Query($this->core);
$queryBuilder->setTable($this->table);
call_user_func_array(array($queryBuilder, 'delete'), func_get_args());
return $queryBuilder;
}
/**
* The default table will be set to $this->table
* @see Query::insert
* @param $array Array with values
* @return Query
* @throws Exception
*/
public function insert($array){
$queryBuilder = new Query($this->core);
$queryBuilder->setTable($this->table);
call_user_func_array(array($queryBuilder, 'insert'), func_get_args());
return $queryBuilder;
}
/**
* Return latest insert id
*
* @return mixed
*/
public function getLastInsertId(){
return $this->mods->database->lastInsertId();
}
public function __call($name, $params) {
return call_user_func_array(array($this->mods->database, $name), $params);
}
}

View File

@ -0,0 +1,675 @@
<?php
namespace Module\DatabaseUtils;
use \FuzeWorks\Module;
use \FuzeWorks\DatabaseException;
/**
* Class Query
* @package Module\DatabaseUtils
*
* @method $this or() or(string $field, string $arg2) OR $arg2 is the value of the field, or an operator in which case the value is pushed to the third argument
* @method $this and() and(string $field, string $arg2) AND $arg2 is the value of the field, or an operator in which case the value is pushed to the third argument
*/
class Query extends Module {
/**
* @var string The string containing the query
*/
private $query = '';
/**
* @var array The binds corresponding to the query
*/
private $binds = array();
/**
* @var null|string The table used
*/
private $table = '';
/**
* @var null|\PDOStatement
*/
private $sth = null;
public function __construct(&$core){
parent::__construct($core);
}
/**
* Default module function on creation
*/
public function onLoad() {}
/**
* Each argument is another field to select
*
* @return $this
*/
public function select()
{
$this->query .= 'SELECT ' . (func_num_args() == 0 ? '*' : '`' . implode("`, `", func_get_args()) . '`');
return $this;
}
/**
* From
*
* @param $table null|string The table, if it is null, the table set with setTable() will be used
* @return $this
* @throws Exception
*/
public function from($table = '')
{
if($table === ''){
if($this->table == '')
throw new Exception("No table given");
$table = $this->table;
}
$this->query .= ' FROM `' . $table . '`';
return $this;
}
/**
* Where
*
* @param $field
* @param $arg2 string, The value of the field, or an operator in which case the value is pushed to $arg3
* @param null|string $arg3 The value of the field when $arg2 is used for an operator
* @return $this
*/
public function where($field, $arg2, $arg3 = null){
//The value is the second paramter, unless the second parameter is an operator, in which case it's the third
$value = ($arg3 == null ? $arg2 : $arg3);
//If the third parameter is not given, the default operator should be used
$operator = strtoupper($arg3 == null ? "=" : $arg2);
switch($operator){
case 'IN':
$this->query .= ' WHERE `' . $field .'` IN (';
foreach($value as $k => $v){
$this->query .= '?,';
$this->binds[] = $v;
}
//Remove the trailing comma and close it
$this->query = rtrim($this->query, ",") . ')';
break;
case 'BETWEEN':
$this->query .= ' WHERE `' . $field .'` BETWEEN ? AND ?';
$this->binds[] = $value[0];
$this->binds[] = $value[1];
break;
default:
$this->query .= ' WHERE `' . $field .'` ' . $operator . ' ?';
$this->binds[] = $value;
break;
}
return $this;
}
/**
* Where open. Is the start of WHERE(....). To end this call ->close()
*
* @param $field
* @param $arg2 string, The value of the field, or an operator in which case the value is pushed to $arg3
* @param null|string $arg3 The value of the field when $arg2 is used for an operator
* @return $this
*/
public function where_open($field, $arg2, $arg3 = null){
$old = $this->query;
$this->where($field, $arg2, $arg3);
//Replace the WHERE with WHERE (
$this->query = $old . ' WHERE (' . substr($this->query, strlen($old) + 7);
return $this;
}
/**
* Or, this function should be called after ->where() or ->having(). Please use ->or as an alias instead of ->_or()
*
* @param $field
* @param $arg2 string, The value of the field, or an operator in which case the value is pushed to $arg3
* @param null|string $arg3 The value of the field when $arg2 is used for an operator
* @return $this
*/
public function _or($field, $arg2, $arg3 = null){
//The value is the second paramter, unless the second parameter is an operator, in which case it's the third
$value = ($arg3 == null ? $arg2 : $arg3);
//If the third parameter is not given, the default operator should be used
$operator = strtoupper($arg3 == null ? "=" : $arg2);
switch($operator){
case 'IN':
$this->query .= ' OR `' . $field .'` IN (';
foreach($value as $k => $v){
$this->query .= '?,';
$this->binds[] = $v;
}
//Remove the trailing comma and close it
$this->query = rtrim($this->query, ",") . ')';
break;
case 'BETWEEN':
$this->query .= ' OR `' . $field .'` BETWEEN ? AND ?';
$this->binds[] = $value[0];
$this->binds[] = $value[1];
break;
default:
$this->query .= ' OR `' . $field .'` ' . $operator . ' ?';
$this->binds[] = $value;
break;
}
return $this;
}
/**
* Or open. Is the start of OR(....). To end this call ->close()
*
* @param $field
* @param $arg2 string, The value of the field, or an operator in which case the value is pushed to $arg3
* @param null|string $arg3 The value of the field when $arg2 is used for an operator
* @return $this
*/
public function or_open($field, $arg2, $arg3 = null){
$old = $this->query;
$this->_or($field, $arg2, $arg3);
//Replace the OR with OR (
$this->query = $old . ' OR (' . substr($this->query, strlen($old) + 4);
return $this;
}
/**
* And, this function should be called after ->where() or ->having(). Please use ->and as an alias instead of ->_and()
*
* @param $field
* @param $arg2 string, The value of the field, or an operator in which case the value is pushed to $arg3
* @param null|string $arg3 The value of the field when $arg2 is used for an operator
* @return $this
*/
public function _and($field, $arg2, $arg3 = null){
//The value is the second paramter, unless the second parameter is an operator, in which case it's the third
$value = ($arg3 == null ? $arg2 : $arg3);
//If the third parameter is not given, the default operator should be used
$operator = strtoupper($arg3 == null ? "=" : $arg2);
switch($operator){
case 'IN':
$this->query .= ' AND `' . $field .'` IN (';
foreach($value as $k => $v){
$this->query .= '?,';
$this->binds[] = $v;
}
//Remove the trailing comma and close it
$this->query = rtrim($this->query, ",") . ')';
break;
case 'BETWEEN':
$this->query .= ' AND `' . $field .'` BETWEEN ? AND ?';
$this->binds[] = $value[0];
$this->binds[] = $value[1];
break;
default:
$this->query .= ' AND `' . $field .'` ' . $operator . ' ?';
$this->binds[] = $value;
break;
}
return $this;
}
/**
* And open. Is the start of AND(....). To end this call ->close()
*
* @param $field
* @param $arg2 string, The value of the field, or an operator in which case the value is pushed to $arg3
* @param null|string $arg3 The value of the field when $arg2 is used for an operator
* @return $this
*/
public function and_open($field, $arg2, $arg3 = null){
$old = $this->query;
$this->_and($field, $arg2, $arg3);
//Replace the AND with AND (
$this->query = $old . ' AND (' . substr($this->query, strlen($old) + 5);
return $this;
}
/**
* Closes and ->where_open() or ->having_open()
* @return $this
*/
public function close(){
$this->query .= ')';
return $this;
}
/**
* Order By
*
* Each argument is another order. If you put a minus in front of the name, the order will be DESC instead of ASC
*
* @return $this
*/
public function order(){
$this->query .= ' ORDER BY';
foreach(func_get_args() as $field){
if(substr($this->query, -2) != 'BY')
$this->query .= ",";
$mode = 'ASC';
if(substr($field, 0, 1) == '-'){
$field = substr($field, 1);
$mode = 'DESC';
}
$this->query .= ' `' . $field . '` ' . $mode;
}
return $this;
}
/**
* limit
*
* @param $limit int Limit
* @param int $offset int Offset
* @return $this
*/
public function limit($limit, $offset = 0){
$this->query .= ' LIMIT ' . $offset . ', ' . $limit;
return $this;
}
/**
* Having
*
* @param $field
* @param $arg2 string, The value of the field, or an operator in which case the value is pushed to $arg3
* @param null|string $arg3 The value of the field when $arg2 is used for an operator
* @return $this
*/
public function having($field, $arg2, $arg3 = null){
//The value is the second paramter, unless the second parameter is an operator, in which case it's the third
$value = ($arg3 == null ? $arg2 : $arg3);
//If the third parameter is not given, the default operator should be used
$operator = strtoupper($arg3 == null ? "=" : $arg2);
switch($operator){
case 'IN':
$this->query .= ' HAVING `' . $field .'` IN (';
foreach($value as $k => $v){
$this->query .= '?,';
$this->binds[] = $v;
}
//Remove the trailing comma and close it
$this->query = rtrim($this->query, ",") . ')';
break;
case 'BETWEEN':
$this->query .= ' HAVING `' . $field .'` BETWEEN ? AND ?';
$this->binds[] = $value[0];
$this->binds[] = $value[1];
break;
default:
$this->query .= ' HAVING `' . $field .'` ' . $operator . ' ?';
$this->binds[] = $value;
break;
}
return $this;
}
/**
* Having open. Is the start of HAVING(....). To end this call ->close()
*
* @param $field
* @param $arg2 string, The value of the field, or an operator in which case the value is pushed to $arg3
* @param null|string $arg3 The value of the field when $arg2 is used for an operator
* @return $this
*/
public function having_open($field, $arg2, $arg3 = null){
$old = $this->query;
$this->having($field, $arg2, $arg3);
//Replace the WHERE with WHERE (
$this->query = $old . ' HAVING (' . substr($this->query, strlen($old) + 8);
return $this;
}
/**
* Update
*
* @param $table null|string Name of the table, if it is null, the table set with setTable() will be used
* @return $this
* @throws Exception
*/
public function update($table = '')
{
if($table === ''){
if($this->table == '')
throw new Exception("No table given");
$table = $this->table;
}
$this->query .= 'UPDATE `' . $table . '`';
return $this;
}
/**
* Set
*
* @param $array array Key value, $field => $value
* @return $this
*/
public function set($array)
{
$this->query .= ' SET';
$first = true;
foreach($array as $field => $value){
if(!$first)
$this->query .= ',';
$first = false;
$this->query .= ' `' . $field . '`=?';
$this->binds[] = $value;
}
return $this;
}
/**
* Delete
*
* @return $this
*/
public function delete()
{
$this->query .= 'DELETE';
return $this;
}
/**
* Insert
*
* @param $array array Key value, $field => $value
* @param $table string|null Table name, if it is null, the table set with setTable() will be used
* @return $this
* @throws Exception
*/
public function insert($array, $table = ''){
if($table === ''){
if($this->table == '')
throw new DatabaseException("No table given");
$table = $this->table;
}
//Implode the array to get a list with the fields
$this->query .= 'INSERT INTO `' . $table . '` (`' . implode('`,`', array_keys($array)) . '`) VALUES (';
//Add all the values as ? and add them to the binds
foreach($array as $field => $value){
$this->query .= '?,';
$this->binds[] = $value;
}
$this->query = rtrim($this->query, ',') . ')';
return $this;
}
/**
* Returns the query
*
* @return string
*/
public function getQuery(){
return $this->query;
}
/**
* Return the binds that corresponds with the binds
*
* @return array
*/
public function getBinds(){
return $this->binds;
}
/**
* @param $table
* @return $this
*/
public function setTable($table){
$this->table = $table;
return $this;
}
/**
* @return null|string
*/
public function getTable(){
return $this->table;
}
/**
* @return $this
*/
public function commit(){
$this->mods->database->commit();
return $this;
}
/**
* @return $this
*/
public function beginTransaction(){
$this->mods->database->beginTransaction();
return $this;
}
/**
* @return $this
*/
public function rollback(){
$this->mods->database->rollback();
return $this;
}
/**
* Executes the query generated
*
* @return $this
* @throws DatabaseException
*/
public function execute(){
if($this->config->database->debug)
$this->logger->log("Generated query: ".$this->query, 'QueryBuilder');
try{
$this->sth = $this->mods->database->prepare($this->query);
if(count($this->binds) === 0){
$this->sth->execute();
}else{
$this->sth->execute($this->binds);
}
}catch (\PDOException $e) {
throw new DatabaseException('Could not execute SQL-query due PDO-exception ' . $e->getMessage());
}
return $this;
}
/**
* Returns the results of the query as an associative array. ->execute() must be called first.
* @return array
* @throws DatabaseException
*/
public function getArray(){
if(!isset($this->sth))
$this->execute();
return $this->sth->fetchAll(\PDO::FETCH_ASSOC);
}
/**
* Returns the results of the query as an array containing objects. ->execute() must be called first.
* @return object[]
* @throws DatabaseException
*/
public function getObject(){
if(!isset($this->sth))
$this->execute();
return $this->sth->fetchAll(\PDO::FETCH_OBJ);
}
/**
* Returns the amount of rows that are affected. ->execute must be called first.
* @return int Amount of rows that are affected
* @throws DatabaseException
*/
public function getRowCount(){
if(!isset($this->sth))
$this->execute();
return $this->sth->rowCount();
}
/**
* @return string
*/
public function getLastInsertId(){
return $this->mods->database->lastInsertId();
}
/**
* PHP does not allow to use "or" and "and" as function name, by using __call we can redirect them to _or and _and
*
* @param $name string
* @param $arguments array
* @return mixed
*/
public function __call($name, $arguments){
switch($name){
case "or":
return call_user_func_array(array($this, "_or"), $arguments);
case "and":
return call_user_func_array(array($this, "_and"), $arguments);
}
}
}

View File

@ -0,0 +1,23 @@
<?php
return array(
'module_class' => 'Module\DatabaseUtils\Main',
'module_file' => 'class.model.php',
'module_name' => 'DatabaseUtils',
'abstract' => false,
'dependencies' => array('techfuze/database'),
'events' => array(),
'sections' => array(),
'name' => 'FuzeWorks Database Utilities',
'description' => 'Automatically build SQL queries using methods in this class',
'author' => 'TechFuze',
'version' => '1.0.0',
'website' => 'http://fuzeworks.techfuze.net/',
'date_created' => '29-04-2015',
'date_updated' => '29-04-2015',
'enabled' => true,
);