2016-10-12 22:12:25 -04:00
|
|
|
<?php declare(strict_types=1);
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
2016-09-07 13:17:17 -04:00
|
|
|
* SQL Query Builder / Database Abstraction Layer
|
2012-03-15 09:25:18 -04:00
|
|
|
*
|
2018-01-19 13:43:19 -05:00
|
|
|
* PHP version 7.1
|
2016-09-07 13:17:17 -04:00
|
|
|
*
|
|
|
|
* @package Query
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2018-01-19 13:43:19 -05:00
|
|
|
* @copyright 2012 - 2018 Timothy J. Warren
|
2016-09-07 13:17:17 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @link https://git.timshomepage.net/aviat4ion/Query
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2014-04-02 17:08:50 -04:00
|
|
|
namespace Query;
|
2014-04-07 18:28:53 -04:00
|
|
|
|
2016-10-12 20:32:23 -04:00
|
|
|
use BadMethodCallException;
|
2016-10-12 22:12:25 -04:00
|
|
|
use PDOStatement;
|
|
|
|
use Query\Drivers\DriverInterface;
|
2014-04-24 17:07:50 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
2016-10-13 21:55:23 -04:00
|
|
|
* Convenience class for creating sql queries
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-09-07 17:39:19 -04:00
|
|
|
class QueryBuilder extends AbstractQueryBuilder implements QueryBuilderInterface {
|
2014-06-09 17:02:14 -04:00
|
|
|
|
2014-04-24 21:29:40 -04:00
|
|
|
/**
|
|
|
|
* String class values to be reset
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
private $stringVars = [
|
|
|
|
'selectString',
|
|
|
|
'fromString',
|
|
|
|
'setString',
|
|
|
|
'orderString',
|
|
|
|
'groupString',
|
2014-04-24 21:29:40 -04:00
|
|
|
'limit',
|
|
|
|
'offset',
|
|
|
|
'explain',
|
2016-09-07 13:10:03 -04:00
|
|
|
];
|
2014-04-24 21:29:40 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Array class variables to be reset
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
private $arrayVars = [
|
|
|
|
'setArrayKeys',
|
|
|
|
'orderArray',
|
|
|
|
'groupArray',
|
2014-04-24 21:29:40 -04:00
|
|
|
'values',
|
2016-10-13 21:55:23 -04:00
|
|
|
'whereValues',
|
|
|
|
'queryMap',
|
|
|
|
'havingMap'
|
2016-09-07 13:10:03 -04:00
|
|
|
];
|
2014-04-24 21:29:40 -04:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Methods
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Constructor
|
2012-03-29 21:20:03 -04:00
|
|
|
*
|
2015-11-10 11:18:11 -05:00
|
|
|
* @param DriverInterface $db
|
|
|
|
* @param QueryParser $parser
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2015-11-10 11:18:11 -05:00
|
|
|
public function __construct(DriverInterface $db, QueryParser $parser)
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2014-04-23 15:53:16 -04:00
|
|
|
// Inject driver and parser
|
2012-11-08 14:28:49 -05:00
|
|
|
$this->db = $db;
|
2014-04-23 15:53:16 -04:00
|
|
|
$this->parser = $parser;
|
2012-10-31 16:21:15 -04:00
|
|
|
|
2013-02-28 12:22:55 -05:00
|
|
|
$this->queries['total_time'] = 0;
|
|
|
|
|
2014-04-23 15:53:16 -04:00
|
|
|
// Alias driver sql and util classes
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->sql = $this->db->getSql();
|
|
|
|
$this->util = $this->db->getUtil();
|
2012-10-31 16:21:15 -04:00
|
|
|
}
|
2014-02-21 15:08:00 -05:00
|
|
|
|
2014-02-17 20:10:47 -05:00
|
|
|
/**
|
|
|
|
* Destructor
|
2014-04-03 13:28:30 -04:00
|
|
|
* @codeCoverageIgnore
|
2014-02-17 20:10:47 -05:00
|
|
|
*/
|
|
|
|
public function __destruct()
|
|
|
|
{
|
|
|
|
$this->db = NULL;
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2014-04-24 20:14:19 -04:00
|
|
|
/**
|
2016-10-12 22:12:25 -04:00
|
|
|
* Calls a function further down the inheritance chain
|
2014-04-24 20:14:19 -04:00
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param array $params
|
|
|
|
* @return mixed
|
2016-10-12 20:32:23 -04:00
|
|
|
* @throws BadMethodCallException
|
2014-04-24 20:14:19 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function __call(string $name, array $params)
|
2014-04-24 20:14:19 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
// Alias snake_case method calls
|
|
|
|
$camelName = \to_camel_case($name);
|
2014-04-24 20:14:19 -04:00
|
|
|
|
2016-09-07 13:10:03 -04:00
|
|
|
foreach([$this, $this->db] as $object)
|
2014-04-24 20:14:19 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
foreach([$name, $camelName] as $methodName)
|
2014-04-24 20:14:19 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
if (method_exists($object, $methodName))
|
2014-04-24 20:14:19 -04:00
|
|
|
{
|
2018-01-19 16:48:52 -05:00
|
|
|
return \call_user_func_array([$object, $methodName], $params);
|
2014-04-24 20:14:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-10-12 22:12:25 -04:00
|
|
|
throw new BadMethodCallException('Method does not exist');
|
2014-04-24 20:14:19 -04:00
|
|
|
}
|
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Select Queries
|
|
|
|
// --------------------------------------------------------------------------
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Specifies rows to select in a query
|
|
|
|
*
|
|
|
|
* @param string $fields
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function select(string $fields): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
|
|
|
// Split fields by comma
|
2016-10-13 21:55:23 -04:00
|
|
|
$fieldsArray = explode(',', $fields);
|
|
|
|
$fieldsArray = array_map('mb_trim', $fieldsArray);
|
2012-03-15 09:25:18 -04:00
|
|
|
|
|
|
|
// Split on 'As'
|
2016-10-13 21:55:23 -04:00
|
|
|
foreach ($fieldsArray as $key => $field)
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
|
|
|
if (stripos($field, 'as') !== FALSE)
|
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$fieldsArray[$key] = preg_split('` as `i', $field);
|
|
|
|
$fieldsArray[$key] = array_map('mb_trim', $fieldsArray[$key]);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Quote the identifiers
|
2016-10-13 21:55:23 -04:00
|
|
|
$safeArray = $this->db->quoteIdent($fieldsArray);
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2016-10-13 21:55:23 -04:00
|
|
|
unset($fieldsArray);
|
2012-03-15 09:25:18 -04:00
|
|
|
|
|
|
|
// Join the strings back together
|
2016-10-13 21:55:23 -04:00
|
|
|
for($i = 0, $c = count($safeArray); $i < $c; $i++)
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
if (is_array($safeArray[$i]))
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$safeArray[$i] = implode(' AS ', $safeArray[$i]);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->selectString .= implode(', ', $safeArray);
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2016-10-13 21:55:23 -04:00
|
|
|
unset($safeArray);
|
2012-03-15 09:25:18 -04:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-30 15:29:45 -04:00
|
|
|
/**
|
|
|
|
* Selects the maximum value of a field from a query
|
|
|
|
*
|
|
|
|
* @param string $field
|
2016-10-12 20:32:23 -04:00
|
|
|
* @param string|bool $as
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-30 15:29:45 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function selectMax(string $field, $as=FALSE): QueryBuilderInterface
|
2012-04-30 15:29:45 -04:00
|
|
|
{
|
2012-04-13 12:49:13 -04:00
|
|
|
// Create the select string
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->selectString .= ' MAX'.$this->_select($field, $as);
|
2012-04-13 12:49:13 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-13 12:49:13 -04:00
|
|
|
/**
|
|
|
|
* Selects the minimum value of a field from a query
|
|
|
|
*
|
|
|
|
* @param string $field
|
2014-04-23 15:53:16 -04:00
|
|
|
* @param string|bool $as
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-13 12:49:13 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function selectMin(string $field, $as=FALSE): QueryBuilderInterface
|
2012-08-09 12:15:36 -04:00
|
|
|
{
|
2012-04-13 12:49:13 -04:00
|
|
|
// Create the select string
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->selectString .= ' MIN'.$this->_select($field, $as);
|
2012-04-13 12:49:13 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-13 12:49:13 -04:00
|
|
|
/**
|
|
|
|
* Selects the average value of a field from a query
|
|
|
|
*
|
|
|
|
* @param string $field
|
2014-04-23 15:53:16 -04:00
|
|
|
* @param string|bool $as
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-13 12:49:13 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function selectAvg(string $field, $as=FALSE): QueryBuilderInterface
|
2012-04-13 12:49:13 -04:00
|
|
|
{
|
|
|
|
// Create the select string
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->selectString .= ' AVG'.$this->_select($field, $as);
|
2012-04-13 12:49:13 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-13 12:49:13 -04:00
|
|
|
/**
|
|
|
|
* Selects the sum of a field from a query
|
|
|
|
*
|
|
|
|
* @param string $field
|
2014-04-23 15:53:16 -04:00
|
|
|
* @param string|bool $as
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-13 12:49:13 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function selectSum(string $field, $as=FALSE): QueryBuilderInterface
|
2012-04-13 12:49:13 -04:00
|
|
|
{
|
|
|
|
// Create the select string
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->selectString .= ' SUM'.$this->_select($field, $as);
|
2012-04-13 12:49:13 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-04-13 16:50:05 -04:00
|
|
|
/**
|
|
|
|
* Adds the 'distinct' keyword to a query
|
|
|
|
*
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-13 16:50:05 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function distinct(): QueryBuilderInterface
|
2012-04-13 16:50:05 -04:00
|
|
|
{
|
|
|
|
// Prepend the keyword to the select string
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->selectString = ' DISTINCT '.$this->selectString;
|
2012-04-13 16:50:05 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2014-02-21 15:08:00 -05:00
|
|
|
|
2014-02-04 20:59:30 -05:00
|
|
|
/**
|
|
|
|
* Tell the database to give you the query plan instead of result set
|
|
|
|
*
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2014-02-04 20:59:30 -05:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function explain(): QueryBuilderInterface
|
2014-02-04 20:59:30 -05:00
|
|
|
{
|
|
|
|
$this->explain = TRUE;
|
|
|
|
return $this;
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Specify the database table to select from
|
|
|
|
*
|
2012-11-07 08:42:34 -05:00
|
|
|
* @param string $tblname
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function from($tblname): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
|
|
|
// Split identifiers on spaces
|
2016-10-13 21:55:23 -04:00
|
|
|
$identArray = explode(' ', \mb_trim($tblname));
|
|
|
|
$identArray = array_map('\\mb_trim', $identArray);
|
2012-03-29 21:20:03 -04:00
|
|
|
|
|
|
|
// Quote the identifiers
|
2016-10-13 21:55:23 -04:00
|
|
|
$identArray[0] = $this->db->quoteTable($identArray[0]);
|
|
|
|
$identArray = $this->db->quoteIdent($identArray);
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// Paste it back together
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->fromString = implode(' ', $identArray);
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! 'Like' methods
|
|
|
|
// --------------------------------------------------------------------------
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2014-03-28 13:38:34 -04:00
|
|
|
/**
|
|
|
|
* Creates a Like clause in the sql statement
|
|
|
|
*
|
|
|
|
* @param string $field
|
|
|
|
* @param mixed $val
|
|
|
|
* @param string $pos
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2014-03-28 13:38:34 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function like($field, $val, $pos='both'): QueryBuilderInterface
|
2012-04-30 16:06:06 -04:00
|
|
|
{
|
2012-05-01 13:45:11 -04:00
|
|
|
return $this->_like($field, $val, $pos, 'LIKE', 'AND');
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Generates an OR Like clause
|
|
|
|
*
|
|
|
|
* @param string $field
|
|
|
|
* @param mixed $val
|
|
|
|
* @param string $pos
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function orLike($field, $val, $pos='both'): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2012-05-01 13:45:11 -04:00
|
|
|
return $this->_like($field, $val, $pos, 'LIKE', 'OR');
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Generates a NOT LIKE clause
|
|
|
|
*
|
|
|
|
* @param string $field
|
|
|
|
* @param mixed $val
|
|
|
|
* @param string $pos
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function notLike($field, $val, $pos='both'): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2012-05-01 13:45:11 -04:00
|
|
|
return $this->_like($field, $val, $pos, 'NOT LIKE', 'AND');
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Generates a OR NOT LIKE clause
|
|
|
|
*
|
|
|
|
* @param string $field
|
|
|
|
* @param mixed $val
|
|
|
|
* @param string $pos
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function orNotLike($field, $val, $pos='both'): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2012-05-01 13:45:11 -04:00
|
|
|
return $this->_like($field, $val, $pos, 'NOT LIKE', 'OR');
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-05-01 13:45:11 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Having methods
|
2012-04-16 13:43:41 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2014-03-28 13:38:34 -04:00
|
|
|
/**
|
|
|
|
* Generates a 'Having' clause
|
|
|
|
*
|
|
|
|
* @param mixed $key
|
|
|
|
* @param mixed $val
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2014-03-28 13:38:34 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function having($key, $val=[]): QueryBuilderInterface
|
2012-05-01 13:45:11 -04:00
|
|
|
{
|
|
|
|
return $this->_having($key, $val, 'AND');
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-16 13:43:41 -04:00
|
|
|
/**
|
|
|
|
* Generates a 'Having' clause prefixed with 'OR'
|
|
|
|
*
|
|
|
|
* @param mixed $key
|
|
|
|
* @param mixed $val
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-16 13:43:41 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function orHaving($key, $val=[]): QueryBuilderInterface
|
2012-04-16 13:43:41 -04:00
|
|
|
{
|
2012-05-01 13:45:11 -04:00
|
|
|
return $this->_having($key, $val, 'OR');
|
2012-04-16 13:43:41 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! 'Where' methods
|
|
|
|
// --------------------------------------------------------------------------
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Specify condition(s) in the where clause of a query
|
2012-03-29 21:20:03 -04:00
|
|
|
* Note: this function works with key / value, or a
|
2012-03-15 09:25:18 -04:00
|
|
|
* passed array with key / value pairs
|
2012-03-29 21:20:03 -04:00
|
|
|
*
|
|
|
|
* @param mixed $key
|
2012-03-15 09:25:18 -04:00
|
|
|
* @param mixed $val
|
2014-02-04 20:59:30 -05:00
|
|
|
* @param mixed $escape
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function where($key, $val=[], $escape=NULL): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_whereString($key, $val, 'AND');
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Where clause prefixed with "OR"
|
|
|
|
*
|
2012-05-01 13:45:11 -04:00
|
|
|
* @param string $key
|
2012-03-15 09:25:18 -04:00
|
|
|
* @param mixed $val
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function orWhere($key, $val=[]): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_whereString($key, $val, 'OR');
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Where clause with 'IN' statement
|
|
|
|
*
|
|
|
|
* @param mixed $field
|
|
|
|
* @param mixed $val
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function whereIn($field, $val=[]): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_whereIn($field, $val);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Where in statement prefixed with "or"
|
|
|
|
*
|
|
|
|
* @param string $field
|
|
|
|
* @param mixed $val
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function orWhereIn($field, $val=[]): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_whereIn($field, $val, 'IN', 'OR');
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* WHERE NOT IN (FOO) clause
|
|
|
|
*
|
|
|
|
* @param string $field
|
|
|
|
* @param mixed $val
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function whereNotIn($field, $val=[]): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_whereIn($field, $val, 'NOT IN', 'AND');
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OR WHERE NOT IN (FOO) clause
|
2012-03-29 21:20:03 -04:00
|
|
|
*
|
2012-03-15 09:25:18 -04:00
|
|
|
* @param string $field
|
|
|
|
* @param mixed $val
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function orWhereNotIn($field, $val=[]): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_whereIn($field, $val, 'NOT IN', 'OR');
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Other Query Modifier methods
|
|
|
|
// --------------------------------------------------------------------------
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-16 13:43:41 -04:00
|
|
|
/**
|
|
|
|
* Sets values for inserts / updates / deletes
|
|
|
|
*
|
|
|
|
* @param mixed $key
|
|
|
|
* @param mixed $val
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-16 13:43:41 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function set($key, $val = NULL): QueryBuilderInterface
|
2012-04-16 13:43:41 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->_mixedSet($this->setArrayKeys, $key, $val, self::KEY);
|
|
|
|
$this->_mixedSet($this->values, $key, $val, self::VALUE);
|
2012-04-16 13:43:41 -04:00
|
|
|
|
|
|
|
// Use the keys of the array to make the insert/update string
|
|
|
|
// Escape the field names
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->setArrayKeys = array_map([$this->db, '_quote'], $this->setArrayKeys);
|
2012-04-16 13:43:41 -04:00
|
|
|
|
|
|
|
// Generate the "set" string
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->setString = implode('=?,', $this->setArrayKeys);
|
|
|
|
$this->setString .= '=?';
|
2012-04-16 13:43:41 -04:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Creates a join phrase in a compiled query
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param string $condition
|
|
|
|
* @param string $type
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function join($table, $condition, $type=''): QueryBuilderInterface
|
2012-03-29 21:20:03 -04:00
|
|
|
{
|
2012-11-07 08:42:34 -05:00
|
|
|
// Prefix and quote table name
|
|
|
|
$table = explode(' ', mb_trim($table));
|
2016-10-13 21:55:23 -04:00
|
|
|
$table[0] = $this->db->quoteTable($table[0]);
|
|
|
|
$table = $this->db->quoteIdent($table);
|
2012-11-07 08:42:34 -05:00
|
|
|
$table = implode(' ', $table);
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-08-09 12:15:36 -04:00
|
|
|
// Parse out the join condition
|
2016-10-13 21:55:23 -04:00
|
|
|
$parsedCondition = $this->parser->compileJoin($condition);
|
|
|
|
$condition = $table . ' ON ' . $parsedCondition;
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->_appendMap("\n" . strtoupper($type) . ' JOIN ', $condition, 'join');
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Group the results by the selected field(s)
|
|
|
|
*
|
|
|
|
* @param mixed $field
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function groupBy($field): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
|
|
|
if ( ! is_scalar($field))
|
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$newGroupArray = array_map([$this->db, 'quoteIdent'], $field);
|
|
|
|
$this->groupArray = array_merge($this->groupArray, $newGroupArray);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->groupArray[] = $this->db->quoteIdent($field);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->groupString = ' GROUP BY ' . implode(',', $this->groupArray);
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Order the results by the selected field(s)
|
|
|
|
*
|
|
|
|
* @param string $field
|
|
|
|
* @param string $type
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function orderBy($field, $type=""): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2014-04-24 20:14:19 -04:00
|
|
|
// When ordering by random, do an ascending order if the driver
|
|
|
|
// doesn't support random ordering
|
2012-03-15 09:25:18 -04:00
|
|
|
if (stripos($type, 'rand') !== FALSE)
|
|
|
|
{
|
2014-06-09 17:02:14 -04:00
|
|
|
$rand = $this->sql->random();
|
2016-10-12 22:12:25 -04:00
|
|
|
$type = $rand ?? 'ASC';
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// Set fields for later manipulation
|
2016-10-13 21:55:23 -04:00
|
|
|
$field = $this->db->quoteIdent($field);
|
|
|
|
$this->orderArray[$field] = $type;
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2016-10-13 21:55:23 -04:00
|
|
|
$orderClauses = [];
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// Flatten key/val pairs into an array of space-separated pairs
|
2016-10-13 21:55:23 -04:00
|
|
|
foreach($this->orderArray as $k => $v)
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$orderClauses[] = $k . ' ' . strtoupper($v);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// Set the final string
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->orderString = ( ! isset($rand))
|
|
|
|
? "\nORDER BY ".implode(', ', $orderClauses)
|
2014-02-14 10:38:25 -05:00
|
|
|
: "\nORDER BY".$rand;
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Set a limit on the current sql statement
|
|
|
|
*
|
|
|
|
* @param int $limit
|
2014-04-22 14:02:54 -04:00
|
|
|
* @param int|bool $offset
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function limit($limit, $offset=FALSE): QueryBuilderInterface
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2014-06-30 11:16:50 -04:00
|
|
|
$this->limit = (int) $limit;
|
2012-03-15 09:25:18 -04:00
|
|
|
$this->offset = $offset;
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-04-13 11:53:11 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Query Grouping Methods
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a paren to the current query for query grouping
|
|
|
|
*
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-13 11:53:11 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function groupStart(): QueryBuilderInterface
|
2012-04-13 11:53:11 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$conj = (empty($this->queryMap)) ? ' WHERE ' : ' ';
|
2014-04-01 16:31:08 -04:00
|
|
|
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->_appendMap($conj, '(', 'group_start');
|
2012-04-13 11:53:11 -04:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2016-09-07 17:39:19 -04:00
|
|
|
/**
|
|
|
|
* Adds a paren to the current query for query grouping,
|
|
|
|
* prefixed with 'NOT'
|
|
|
|
*
|
|
|
|
* @return QueryBuilderInterface
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function notGroupStart(): QueryBuilderInterface
|
2016-09-07 17:39:19 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$conj = (empty($this->queryMap)) ? ' WHERE ' : ' AND ';
|
2016-10-12 20:32:23 -04:00
|
|
|
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->_appendMap($conj, ' NOT (', 'group_start');
|
2016-09-07 17:39:19 -04:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-04-13 11:53:11 -04:00
|
|
|
/**
|
|
|
|
* Adds a paren to the current query for query grouping,
|
|
|
|
* prefixed with 'OR'
|
|
|
|
*
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-13 11:53:11 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function orGroupStart(): QueryBuilderInterface
|
2012-04-13 11:53:11 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->_appendMap('', ' OR (', 'group_start');
|
2012-04-13 11:53:11 -04:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a paren to the current query for query grouping,
|
|
|
|
* prefixed with 'OR NOT'
|
|
|
|
*
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-13 11:53:11 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function orNotGroupStart(): QueryBuilderInterface
|
2012-04-13 11:53:11 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->_appendMap('', ' OR NOT (', 'group_start');
|
2012-04-13 11:53:11 -04:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ends a query group
|
|
|
|
*
|
2016-09-07 17:39:19 -04:00
|
|
|
* @return QueryBuilderInterface
|
2012-04-13 11:53:11 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function groupEnd(): QueryBuilderInterface
|
2012-04-13 11:53:11 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->_appendMap('', ')', 'group_end');
|
2012-04-13 11:53:11 -04:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Query execution methods
|
|
|
|
// --------------------------------------------------------------------------
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Select and retrieve all records from the current table, and/or
|
|
|
|
* execute current compiled query
|
|
|
|
*
|
2016-09-07 14:22:52 -04:00
|
|
|
* @param string $table
|
2014-04-22 14:02:54 -04:00
|
|
|
* @param int|bool $limit
|
|
|
|
* @param int|bool $offset
|
2016-10-12 22:12:25 -04:00
|
|
|
* @return PDOStatement
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function get($table='', $limit=FALSE, $offset=FALSE): PDOStatement
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
|
|
|
// Set the table
|
2015-11-11 09:25:21 -05:00
|
|
|
if ( ! empty($table))
|
|
|
|
{
|
|
|
|
$this->from($table);
|
|
|
|
}
|
2012-03-15 09:25:18 -04:00
|
|
|
|
|
|
|
// Set the limit, if it exists
|
2018-01-19 16:48:52 -05:00
|
|
|
if (\is_int($limit))
|
2015-11-11 09:25:21 -05:00
|
|
|
{
|
|
|
|
$this->limit($limit, $offset);
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2018-01-19 16:48:52 -05:00
|
|
|
return $this->_run('get', $table);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-04-13 11:53:11 -04:00
|
|
|
/**
|
2014-04-23 15:53:16 -04:00
|
|
|
* Convenience method for get() with a where clause
|
2012-04-13 11:53:11 -04:00
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param array $where
|
2014-04-23 15:53:16 -04:00
|
|
|
* @param int|bool $limit
|
|
|
|
* @param int|bool $offset
|
2016-10-12 22:12:25 -04:00
|
|
|
* @return PDOStatement
|
2012-04-13 11:53:11 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function getWhere($table, $where=[], $limit=FALSE, $offset=FALSE): PDOStatement
|
2012-04-13 11:53:11 -04:00
|
|
|
{
|
|
|
|
// Create the where clause
|
|
|
|
$this->where($where);
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-13 11:53:11 -04:00
|
|
|
// Return the result
|
|
|
|
return $this->get($table, $limit, $offset);
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-16 13:43:41 -04:00
|
|
|
/**
|
2016-10-12 20:32:23 -04:00
|
|
|
* Retrieve the number of rows in the selected table
|
2012-04-16 13:43:41 -04:00
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @return int
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function countAll($table): int
|
2012-04-16 13:43:41 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
$sql = 'SELECT * FROM '.$this->db->quoteTable($table);
|
2012-11-07 20:48:15 -05:00
|
|
|
$res = $this->db->query($sql);
|
2012-04-17 11:37:39 -04:00
|
|
|
return (int) count($res->fetchAll());
|
2012-04-16 13:43:41 -04:00
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-16 13:43:41 -04:00
|
|
|
/**
|
|
|
|
* Retrieve the number of results for the generated query - used
|
|
|
|
* in place of the get() method
|
|
|
|
*
|
|
|
|
* @param string $table
|
2016-09-07 17:39:19 -04:00
|
|
|
* @param boolean $reset
|
2012-04-16 13:43:41 -04:00
|
|
|
* @return int
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function countAllResults(string $table='', bool $reset = TRUE): int
|
2012-04-16 13:43:41 -04:00
|
|
|
{
|
2012-04-17 11:37:39 -04:00
|
|
|
// Set the table
|
2015-11-11 09:25:21 -05:00
|
|
|
if ( ! empty($table))
|
|
|
|
{
|
|
|
|
$this->from($table);
|
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2016-09-07 17:39:19 -04:00
|
|
|
$result = $this->_run('get', $table, NULL, NULL, $reset);
|
2012-04-17 11:37:39 -04:00
|
|
|
$rows = $result->fetchAll();
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-04-17 11:43:06 -04:00
|
|
|
return (int) count($rows);
|
2012-04-16 13:43:41 -04:00
|
|
|
}
|
2012-08-09 12:15:36 -04:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Creates an insert clause, and executes it
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param mixed $data
|
2016-10-12 22:12:25 -04:00
|
|
|
* @return PDOStatement
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function insert($table, $data=[]): PDOStatement
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2015-11-11 09:25:21 -05:00
|
|
|
if ( ! empty($data))
|
|
|
|
{
|
|
|
|
$this->set($data);
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-10-30 10:37:32 -04:00
|
|
|
return $this->_run("insert", $table);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2014-02-21 15:08:00 -05:00
|
|
|
|
|
|
|
/**
|
2014-03-31 16:01:58 -04:00
|
|
|
* Creates and executes a batch insertion query
|
2013-05-03 13:07:34 -04:00
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param array $data
|
2016-10-12 22:12:25 -04:00
|
|
|
* @return PDOStatement
|
2013-05-03 13:07:34 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function insertBatch($table, $data=[]): PDOStatement
|
2013-05-03 13:07:34 -04:00
|
|
|
{
|
|
|
|
// Get the generated values and sql string
|
2016-10-13 21:55:23 -04:00
|
|
|
list($sql, $data) = $this->db->insertBatch($table, $data);
|
2014-02-21 15:08:00 -05:00
|
|
|
|
2014-04-03 13:28:30 -04:00
|
|
|
return ( ! is_null($sql))
|
|
|
|
? $this->_run('', $table, $sql, $data)
|
|
|
|
: NULL;
|
2013-05-03 13:07:34 -04:00
|
|
|
}
|
2012-03-15 09:25:18 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an update clause, and executes it
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param mixed $data
|
2016-10-12 22:12:25 -04:00
|
|
|
* @return PDOStatement
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function update($table, $data=[]): PDOStatement
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2015-11-11 09:25:21 -05:00
|
|
|
if ( ! empty($data))
|
|
|
|
{
|
|
|
|
$this->set($data);
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-10-30 10:37:32 -04:00
|
|
|
return $this->_run("update", $table);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2016-09-07 17:39:19 -04:00
|
|
|
/**
|
|
|
|
* Creates a batch update, and executes it.
|
|
|
|
* Returns the number of affected rows
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param array|object $data
|
|
|
|
* @param string $where
|
|
|
|
* @return int|null
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function updateBatch($table, $data, $where)
|
2016-09-07 17:39:19 -04:00
|
|
|
{
|
|
|
|
// Get the generated values and sql string
|
2016-10-13 21:55:23 -04:00
|
|
|
list($sql, $data) = $this->db->updateBatch($table, $data, $where);
|
2016-09-07 17:39:19 -04:00
|
|
|
|
|
|
|
return ( ! is_null($sql))
|
|
|
|
? $this->_run('', $table, $sql, $data)
|
|
|
|
: NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insertion with automatic overwrite, rather than attempted duplication
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param array $data
|
|
|
|
* @return \PDOStatement|null
|
|
|
|
*/
|
|
|
|
public function replace($table, $data=[])
|
|
|
|
{
|
|
|
|
if ( ! empty($data))
|
|
|
|
{
|
|
|
|
$this->set($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->_run("replace", $table);
|
|
|
|
}
|
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Deletes data from a table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param mixed $where
|
2016-10-12 22:12:25 -04:00
|
|
|
* @return PDOStatement
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-12 22:12:25 -04:00
|
|
|
public function delete($table, $where=''): PDOStatement
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
|
|
|
// Set the where clause
|
2015-11-11 09:25:21 -05:00
|
|
|
if ( ! empty($where))
|
|
|
|
{
|
|
|
|
$this->where($where);
|
|
|
|
}
|
2012-03-15 09:25:18 -04:00
|
|
|
|
2012-10-30 10:37:32 -04:00
|
|
|
return $this->_run("delete", $table);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2012-09-13 11:44:57 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-12-18 16:19:52 -05:00
|
|
|
// ! SQL Returning Methods
|
2012-09-13 11:44:57 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the generated 'select' sql query
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param bool $reset
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function getCompiledSelect(string $table='', bool $reset=TRUE): string
|
2012-09-13 11:44:57 -04:00
|
|
|
{
|
|
|
|
// Set the table
|
2015-11-11 09:25:21 -05:00
|
|
|
if ( ! empty($table))
|
|
|
|
{
|
|
|
|
$this->from($table);
|
|
|
|
}
|
2012-09-13 11:44:57 -04:00
|
|
|
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_getCompile('select', $table, $reset);
|
2012-09-13 11:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the generated 'insert' sql query
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param bool $reset
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function getCompiledInsert(string $table, bool $reset=TRUE): string
|
2012-09-13 11:44:57 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_getCompile('insert', $table, $reset);
|
2012-09-13 11:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-12-18 16:19:52 -05:00
|
|
|
* Returns the generated 'update' sql query
|
2012-09-13 11:44:57 -04:00
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param bool $reset
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function getCompiledUpdate(string $table='', bool $reset=TRUE): string
|
2012-09-13 11:44:57 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_getCompile('update', $table, $reset);
|
2012-09-13 11:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-12-18 16:19:52 -05:00
|
|
|
* Returns the generated 'delete' sql query
|
2012-09-13 11:44:57 -04:00
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param bool $reset
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function getCompiledDelete(string $table='', bool $reset=TRUE): string
|
2012-09-13 11:44:57 -04:00
|
|
|
{
|
2016-10-13 21:55:23 -04:00
|
|
|
return $this->_getCompile('delete', $table, $reset);
|
2012-10-23 09:40:11 -04:00
|
|
|
}
|
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Miscellaneous Methods
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear out the class variables, so the next query can be run
|
2012-05-01 14:16:03 -04:00
|
|
|
*
|
|
|
|
* @return void
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2016-10-13 21:55:23 -04:00
|
|
|
public function resetQuery()
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2014-04-02 15:11:46 -04:00
|
|
|
// Reset strings and booleans
|
2016-10-13 21:55:23 -04:00
|
|
|
foreach($this->stringVars as $var)
|
2014-04-02 15:11:46 -04:00
|
|
|
{
|
|
|
|
$this->$var = NULL;
|
|
|
|
}
|
2012-03-29 21:20:03 -04:00
|
|
|
|
2014-04-02 15:11:46 -04:00
|
|
|
// Reset arrays
|
2016-10-13 21:55:23 -04:00
|
|
|
foreach($this->arrayVars as $var)
|
2014-03-26 20:49:33 -04:00
|
|
|
{
|
2016-09-07 13:10:03 -04:00
|
|
|
$this->$var = [];
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-04 20:59:30 -05:00
|
|
|
// End of query_builder.php
|