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;
|
2018-01-22 15:43:56 -05:00
|
|
|
use Query\Drivers\{
|
|
|
|
AbstractUtil,
|
|
|
|
DriverInterface,
|
|
|
|
SQLInterface
|
|
|
|
};
|
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
|
|
|
*/
|
2018-01-22 15:43:56 -05:00
|
|
|
class QueryBuilder implements QueryBuilderInterface {
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Constants
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
const KEY = 0;
|
|
|
|
const VALUE = 1;
|
|
|
|
const BOTH = 2;
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! SQL Clause Strings
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compiled 'select' clause
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $selectString = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compiled 'from' clause
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $fromString = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compiled arguments for insert / update
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $setString;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Order by clause
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $orderString;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Group by clause
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $groupString;
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! SQL Clause Arrays
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Keys for insert/update statement
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $setArrayKeys = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Key/val pairs for order by clause
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $orderArray = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Key/val pairs for group by clause
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $groupArray = [];
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Other Class vars
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Values to apply to prepared statements
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $values = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Values to apply to where clauses in prepared statements
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $whereValues = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Value for limit string
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $limit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Value for offset in limit string
|
|
|
|
* @var integer
|
|
|
|
*/
|
|
|
|
protected $offset;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query component order mapping
|
|
|
|
* for complex select queries
|
|
|
|
*
|
|
|
|
* Format:
|
|
|
|
* array(
|
|
|
|
* 'type' => 'where',
|
|
|
|
* 'conjunction' => ' AND ',
|
|
|
|
* 'string' => 'k=?'
|
|
|
|
* )
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $queryMap = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Map for having clause
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $havingMap;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience property for connection management
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $connName = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of queries executed
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $queries;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether to do only an explain on the query
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
protected $explain;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current database driver
|
|
|
|
* @var DriverInterface
|
|
|
|
*/
|
|
|
|
public $driver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query parser class instance
|
|
|
|
* @var QueryParser
|
|
|
|
*/
|
|
|
|
protected $parser;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Alias to driver util class
|
|
|
|
* @var AbstractUtil
|
|
|
|
*/
|
|
|
|
protected $util;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Alias to driver sql class
|
|
|
|
* @var SQLInterface
|
|
|
|
*/
|
|
|
|
protected $sql;
|
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
|
|
|
*
|
2018-01-22 15:43:56 -05:00
|
|
|
* @param DriverInterface $driver
|
2015-11-10 11:18:11 -05:00
|
|
|
* @param QueryParser $parser
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2018-01-22 15:43:56 -05:00
|
|
|
public function __construct(DriverInterface $driver, QueryParser $parser)
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2014-04-23 15:53:16 -04:00
|
|
|
// Inject driver and parser
|
2018-01-22 15:43:56 -05:00
|
|
|
$this->driver = $driver;
|
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
|
2018-01-22 15:43:56 -05:00
|
|
|
$this->sql = $this->driver->getSql();
|
|
|
|
$this->util = $this->driver->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()
|
|
|
|
{
|
2018-01-22 15:43:56 -05:00
|
|
|
$this->driver = NULL;
|
2014-02-17 20:10:47 -05:00
|
|
|
}
|
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
|
|
|
|
2018-01-22 15:43:56 -05:00
|
|
|
foreach([$this, $this->driver] 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
|
2018-01-22 15:43:56 -05:00
|
|
|
$safeArray = $this->driver->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
|
|
|
{
|
2018-01-22 15:43:56 -05: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
|
2018-01-22 15:43:56 -05:00
|
|
|
$identArray[0] = $this->driver->quoteTable($identArray[0]);
|
|
|
|
$identArray = $this->driver->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
|
2018-01-22 15:43:56 -05:00
|
|
|
$this->setArrayKeys = array_map([$this->driver, '_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));
|
2018-01-22 15:43:56 -05:00
|
|
|
$table[0] = $this->driver->quoteTable($table[0]);
|
|
|
|
$table = $this->driver->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))
|
|
|
|
{
|
2018-01-22 15:43:56 -05:00
|
|
|
$newGroupArray = array_map([$this->driver, 'quoteIdent'], $field);
|
2016-10-13 21:55:23 -04:00
|
|
|
$this->groupArray = array_merge($this->groupArray, $newGroupArray);
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-01-22 15:43:56 -05:00
|
|
|
$this->groupArray[] = $this->driver->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
|
|
|
*/
|
2018-01-22 15:43:56 -05: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
|
2018-01-22 15:43:56 -05:00
|
|
|
$field = $this->driver->quoteIdent($field);
|
2016-10-13 21:55:23 -04:00
|
|
|
$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
|
|
|
{
|
2018-01-22 15:43:56 -05: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
|
|
|
{
|
2018-01-22 15:43:56 -05: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
|
|
|
{
|
2018-01-22 15:43:56 -05:00
|
|
|
$sql = 'SELECT * FROM '.$this->driver->quoteTable($table);
|
|
|
|
$res = $this->driver->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
|
|
|
|
2018-01-22 15:43:56 -05: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
|
2018-01-22 15:43:56 -05:00
|
|
|
list($sql, $data) = $this->driver->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
|
|
|
|
2018-01-22 15:43:56 -05: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
|
2018-01-22 15:43:56 -05:00
|
|
|
list($sql, $data) = $this->driver->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);
|
|
|
|
}
|
|
|
|
|
2018-01-22 15:43:56 -05:00
|
|
|
return $this->_run('replace', $table);
|
2016-09-07 17:39:19 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-01-22 15:43:56 -05: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
|
|
|
*/
|
2018-01-22 15:43:56 -05:00
|
|
|
public function resetQuery(): void
|
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
|
|
|
}
|
|
|
|
}
|
2018-01-22 15:43:56 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set values in the class, with either an array or key value pair
|
|
|
|
*
|
|
|
|
* @param array $var
|
|
|
|
* @param mixed $key
|
|
|
|
* @param mixed $val
|
|
|
|
* @param int $valType
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function _mixedSet(array &$var, $key, $val=NULL, int $valType=self::BOTH): array
|
|
|
|
{
|
|
|
|
$arg = (is_scalar($key) && is_scalar($val))
|
|
|
|
? [$key => $val]
|
|
|
|
: $key;
|
|
|
|
|
|
|
|
foreach($arg as $k => $v)
|
|
|
|
{
|
|
|
|
if (\in_array($valType, [self::KEY, self::VALUE], TRUE))
|
|
|
|
{
|
|
|
|
$var[] = ($valType === self::KEY)
|
|
|
|
? $k
|
|
|
|
: $v;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$var[$k] = $v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $var;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to simplify select_ methods
|
|
|
|
*
|
|
|
|
* @param string $field
|
|
|
|
* @param string|bool $as
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function _select(string $field, $as = FALSE): string
|
|
|
|
{
|
|
|
|
// Escape the identifiers
|
|
|
|
$field = $this->driver->quoteIdent($field);
|
|
|
|
|
|
|
|
if ( ! \is_string($as))
|
|
|
|
{
|
|
|
|
return $field;
|
|
|
|
}
|
|
|
|
|
|
|
|
$as = $this->driver->quoteIdent($as);
|
|
|
|
return "({$field}) AS {$as} ";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for returning sql strings
|
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @param string $table
|
|
|
|
* @param bool $reset
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function _getCompile(string $type, string $table, bool $reset): string
|
|
|
|
{
|
|
|
|
$sql = $this->_compile($type, $table);
|
|
|
|
|
|
|
|
// Reset the query builder for the next query
|
|
|
|
if ($reset)
|
|
|
|
{
|
|
|
|
$this->resetQuery();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simplify 'like' methods
|
|
|
|
*
|
|
|
|
* @param string $field
|
|
|
|
* @param mixed $val
|
|
|
|
* @param string $pos
|
|
|
|
* @param string $like
|
|
|
|
* @param string $conj
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
protected function _like(string $field, $val, string $pos, string $like='LIKE', string $conj='AND'): self
|
|
|
|
{
|
|
|
|
$field = $this->driver->quoteIdent($field);
|
|
|
|
|
|
|
|
// Add the like string into the order map
|
|
|
|
$like = $field. " {$like} ?";
|
|
|
|
|
|
|
|
if ($pos === 'before')
|
|
|
|
{
|
|
|
|
$val = "%{$val}";
|
|
|
|
}
|
|
|
|
elseif ($pos === 'after')
|
|
|
|
{
|
|
|
|
$val = "{$val}%";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$val = "%{$val}%";
|
|
|
|
}
|
|
|
|
|
|
|
|
$conj = empty($this->queryMap) ? ' WHERE ' : " {$conj} ";
|
|
|
|
$this->_appendMap($conj, $like, 'like');
|
|
|
|
|
|
|
|
// Add to the values array
|
|
|
|
$this->whereValues[] = $val;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simplify building having clauses
|
|
|
|
*
|
|
|
|
* @param mixed $key
|
|
|
|
* @param mixed $values
|
|
|
|
* @param string $conj
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
protected function _having($key, $values=[], string $conj='AND'): self
|
|
|
|
{
|
|
|
|
$where = $this->_where($key, $values);
|
|
|
|
|
|
|
|
// Create key/value placeholders
|
|
|
|
foreach($where as $f => $val)
|
|
|
|
{
|
|
|
|
// Split each key by spaces, in case there
|
|
|
|
// is an operator such as >, <, !=, etc.
|
|
|
|
$fArray = explode(' ', trim($f));
|
|
|
|
|
|
|
|
$item = $this->driver->quoteIdent($fArray[0]);
|
|
|
|
|
|
|
|
// Simple key value, or an operator
|
|
|
|
$item .= (count($fArray) === 1) ? '=?' : " {$fArray[1]} ?";
|
|
|
|
|
|
|
|
// Put in the having map
|
|
|
|
$this->havingMap[] = [
|
|
|
|
'conjunction' => ( ! empty($this->havingMap)) ? " {$conj} " : ' HAVING ',
|
|
|
|
'string' => $item
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Do all the redundant stuff for where/having type methods
|
|
|
|
*
|
|
|
|
* @param mixed $key
|
|
|
|
* @param mixed $val
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function _where($key, $val=[]): array
|
|
|
|
{
|
|
|
|
$where = [];
|
|
|
|
$this->_mixedSet($where, $key, $val);
|
|
|
|
$this->_mixedSet($this->whereValues, $key, $val, self::VALUE);
|
|
|
|
return $where;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simplify generating where string
|
|
|
|
*
|
|
|
|
* @param mixed $key
|
|
|
|
* @param mixed $values
|
|
|
|
* @param string $defaultConj
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
protected function _whereString($key, $values=[], string $defaultConj='AND'): self
|
|
|
|
{
|
|
|
|
// Create key/value placeholders
|
|
|
|
foreach($this->_where($key, $values) as $f => $val)
|
|
|
|
{
|
|
|
|
// Split each key by spaces, in case there
|
|
|
|
// is an operator such as >, <, !=, etc.
|
|
|
|
$fArray = explode(' ', trim($f));
|
|
|
|
|
|
|
|
$item = $this->driver->quoteIdent($fArray[0]);
|
|
|
|
|
|
|
|
// Simple key value, or an operator
|
|
|
|
$item .= (count($fArray) === 1) ? '=?' : " {$fArray[1]} ?";
|
|
|
|
$lastItem = end($this->queryMap);
|
|
|
|
|
|
|
|
// Determine the correct conjunction
|
|
|
|
$conjunctionList = array_column($this->queryMap, 'conjunction');
|
|
|
|
if (empty($this->queryMap) || ( ! regex_in_array($conjunctionList, "/^ ?\n?WHERE/i")))
|
|
|
|
{
|
|
|
|
$conj = "\nWHERE ";
|
|
|
|
}
|
|
|
|
elseif ($lastItem['type'] === 'group_start')
|
|
|
|
{
|
|
|
|
$conj = '';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$conj = " {$defaultConj} ";
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->_appendMap($conj, $item, 'where');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simplify where_in methods
|
|
|
|
*
|
|
|
|
* @param mixed $key
|
|
|
|
* @param mixed $val
|
|
|
|
* @param string $in - The (not) in fragment
|
|
|
|
* @param string $conj - The where in conjunction
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
protected function _whereIn($key, $val=[], string $in='IN', string $conj='AND'): self
|
|
|
|
{
|
|
|
|
$key = $this->driver->quoteIdent($key);
|
|
|
|
$params = array_fill(0, count($val), '?');
|
|
|
|
|
|
|
|
foreach($val as $v)
|
|
|
|
{
|
|
|
|
$this->whereValues[] = $v;
|
|
|
|
}
|
|
|
|
|
|
|
|
$conjunction = ( ! empty($this->queryMap)) ? " {$conj} " : ' WHERE ';
|
|
|
|
$str = $key . " {$in} (".implode(',', $params).') ';
|
|
|
|
|
|
|
|
$this->_appendMap($conjunction, $str, 'where_in');
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes the compiled query
|
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @param string $table
|
|
|
|
* @param string $sql
|
|
|
|
* @param array|null $vals
|
|
|
|
* @param boolean $reset
|
|
|
|
* @return PDOStatement
|
|
|
|
*/
|
|
|
|
protected function _run(string $type, string $table, $sql=NULL, $vals=NULL, bool $reset=TRUE): PDOStatement
|
|
|
|
{
|
|
|
|
if ($sql === NULL)
|
|
|
|
{
|
|
|
|
$sql = $this->_compile($type, $table);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($vals === NULL)
|
|
|
|
{
|
|
|
|
$vals = array_merge($this->values, (array) $this->whereValues);
|
|
|
|
}
|
|
|
|
|
|
|
|
$startTime = microtime(TRUE);
|
|
|
|
|
|
|
|
$res = empty($vals)
|
|
|
|
? $this->driver->query($sql)
|
|
|
|
: $this->driver->prepareExecute($sql, $vals);
|
|
|
|
|
|
|
|
$endTime = microtime(TRUE);
|
|
|
|
$totalTime = number_format($endTime - $startTime, 5);
|
|
|
|
|
|
|
|
// Add this query to the list of executed queries
|
|
|
|
$this->_appendQuery($vals, $sql, (int) $totalTime);
|
|
|
|
|
|
|
|
// Reset class state for next query
|
|
|
|
if ($reset)
|
|
|
|
{
|
|
|
|
$this->resetQuery();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add an additional set of mapping pairs to a internal map
|
|
|
|
*
|
|
|
|
* @param string $conjunction
|
|
|
|
* @param string $string
|
|
|
|
* @param string $type
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function _appendMap(string $conjunction = '', string $string = '', string $type = '')
|
|
|
|
{
|
|
|
|
$this->queryMap[] = [
|
|
|
|
'type' => $type,
|
|
|
|
'conjunction' => $conjunction,
|
|
|
|
'string' => $string
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert the prepared statement into readable sql
|
|
|
|
*
|
|
|
|
* @param array $vals
|
|
|
|
* @param string $sql
|
|
|
|
* @param int $totalTime
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function _appendQuery($vals, string $sql, int $totalTime)
|
|
|
|
{
|
|
|
|
$evals = \is_array($vals) ? $vals : [];
|
|
|
|
$esql = str_replace('?', "%s", $sql);
|
|
|
|
|
|
|
|
// Quote string values
|
|
|
|
foreach($evals as &$v)
|
|
|
|
{
|
|
|
|
$v = ( ! is_numeric($v))
|
|
|
|
? htmlentities($this->driver->quote($v), ENT_NOQUOTES, 'utf-8')
|
|
|
|
: $v;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the query onto the array of values to pass
|
|
|
|
// as arguments to sprintf
|
|
|
|
array_unshift($evals, $esql);
|
|
|
|
|
|
|
|
// Add the interpreted query to the list of executed queries
|
|
|
|
$this->queries[] = [
|
|
|
|
'time' => $totalTime,
|
|
|
|
'sql' => sprintf(...$evals)
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->queries['total_time'] += $totalTime;
|
|
|
|
|
|
|
|
// Set the last query to get rowcounts properly
|
|
|
|
$this->driver->setLastQuery($sql);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sub-method for generating sql strings
|
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @param string $table
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function _compileType(string $type='', string $table=''): string
|
|
|
|
{
|
|
|
|
switch($type)
|
|
|
|
{
|
|
|
|
case 'insert':
|
|
|
|
$paramCount = count($this->setArrayKeys);
|
|
|
|
$params = array_fill(0, $paramCount, '?');
|
|
|
|
$sql = "INSERT INTO {$table} ("
|
|
|
|
. implode(',', $this->setArrayKeys)
|
|
|
|
. ")\nVALUES (".implode(',', $params).')';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'update':
|
|
|
|
$sql = "UPDATE {$table}\nSET {$this->setString}";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'replace':
|
|
|
|
// @TODO implement
|
|
|
|
$sql = '';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'delete':
|
|
|
|
$sql = "DELETE FROM {$table}";
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Get queries
|
|
|
|
default:
|
|
|
|
$sql = "SELECT * \nFROM {$this->fromString}";
|
|
|
|
|
|
|
|
// Set the select string
|
|
|
|
if ( ! empty($this->selectString))
|
|
|
|
{
|
|
|
|
// Replace the star with the selected fields
|
|
|
|
$sql = str_replace('*', $this->selectString, $sql);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* String together the sql statements for sending to the db
|
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @param string $table
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function _compile(string $type='', string $table=''): string
|
|
|
|
{
|
|
|
|
// Get the base clause for the query
|
|
|
|
$sql = $this->_compileType($type, $this->driver->quoteTable($table));
|
|
|
|
|
|
|
|
$clauses = [
|
|
|
|
'queryMap',
|
|
|
|
'groupString',
|
|
|
|
'orderString',
|
|
|
|
'havingMap',
|
|
|
|
];
|
|
|
|
|
|
|
|
// Set each type of subclause
|
|
|
|
foreach($clauses as $clause)
|
|
|
|
{
|
|
|
|
$param = $this->$clause;
|
|
|
|
if (\is_array($param))
|
|
|
|
{
|
|
|
|
foreach($param as $q)
|
|
|
|
{
|
|
|
|
$sql .= $q['conjunction'] . $q['string'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$sql .= $param;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the limit via the class variables
|
|
|
|
if (is_numeric($this->limit))
|
|
|
|
{
|
|
|
|
$sql = $this->sql->limit($sql, $this->limit, $this->offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
// See if the query plan, rather than the
|
|
|
|
// query data should be returned
|
|
|
|
if ($this->explain === TRUE)
|
|
|
|
{
|
|
|
|
$sql = $this->sql->explain($sql);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|