Query/src/QueryBuilder.php

807 lines
18 KiB
PHP
Raw Normal View History

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
*
2020-04-10 20:54:31 -04:00
* PHP version 7.4
2016-09-07 13:17:17 -04:00
*
* @package Query
* @author Timothy J. Warren <tim@timshomepage.net>
2020-03-18 11:31:56 -04:00
* @copyright 2012 - 2020 Timothy J. Warren
2016-09-07 13:17:17 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2019-12-11 16:49:42 -05:00
* @link https://git.timshomepage.net/aviat/Query
* @version 3.0.0
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
use function is_array;
use function is_int;
2019-12-10 12:17:40 -05:00
2016-10-12 22:12:25 -04:00
use PDOStatement;
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
*/
class QueryBuilder extends QueryBuilderBase implements QueryBuilderInterface {
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! Select Queries
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Specifies rows to select in a query
*
* @param string $fields
* @return self
2012-03-15 09:25:18 -04:00
*/
public function select(string $fields): self
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);
2016-10-13 21:55:23 -04:00
unset($fieldsArray);
2012-03-15 09:25:18 -04:00
// Join the strings back together
foreach ($safeArray as $i => $iValue)
2012-03-15 09:25:18 -04:00
{
if (is_array($iValue))
2012-03-15 09:25:18 -04:00
{
$safeArray[$i] = implode(' AS ', $iValue);
2012-03-15 09:25:18 -04:00
}
}
$this->state->appendSelectString(implode(', ', $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
* @return self
2012-04-30 15:29:45 -04:00
*/
public function selectMax(string $field, $as=FALSE): self
2012-04-30 15:29:45 -04:00
{
// Create the select string
$this->state->appendSelectString(' MAX'.$this->_select($field, $as));
return $this;
}
2012-08-09 12:15:36 -04:00
/**
* Selects the minimum value of a field from a query
*
* @param string $field
* @param string|bool $as
* @return self
*/
public function selectMin(string $field, $as=FALSE): self
2012-08-09 12:15:36 -04:00
{
// Create the select string
$this->state->appendSelectString(' MIN'.$this->_select($field, $as));
return $this;
}
2012-08-09 12:15:36 -04:00
/**
* Selects the average value of a field from a query
*
* @param string $field
* @param string|bool $as
* @return self
*/
public function selectAvg(string $field, $as=FALSE): self
{
// Create the select string
$this->state->appendSelectString(' AVG'.$this->_select($field, $as));
return $this;
}
2012-08-09 12:15:36 -04:00
/**
* Selects the sum of a field from a query
*
* @param string $field
* @param string|bool $as
* @return self
*/
public function selectSum(string $field, $as=FALSE): self
{
// Create the select string
$this->state->appendSelectString(' SUM'.$this->_select($field, $as));
return $this;
}
2019-12-11 16:49:06 -05:00
/**
* Add a 'returning' clause to an insert,update, or delete query
*
2019-12-11 16:49:06 -05:00
* @param string $fields
* @return $this
*/
public function returning(string $fields = ''): self
2019-12-11 16:49:06 -05:00
{
$this->returning = TRUE;
// Re-use the string select field for generating the returning type clause
if ($fields !== '')
{
return $this->select($fields);
}
2019-12-11 16:49:06 -05:00
return $this;
}
/**
* Adds the 'distinct' keyword to a query
*
* @return self
*/
public function distinct(): self
{
// Prepend the keyword to the select string
$this->state->setSelectString(' DISTINCT' . $this->state->getSelectString());
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
*
* @return self
2014-02-04 20:59:30 -05:00
*/
public function explain(): self
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
* @return self
2012-03-15 09:25:18 -04:00
*/
public function from(string $tblname): self
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);
// 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-15 09:25:18 -04:00
// Paste it back together
$this->state->setFromString(implode(' ', $identArray));
2012-03-15 09:25:18 -04:00
return $this;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! 'Like' methods
// --------------------------------------------------------------------------
2012-08-09 12:15:36 -04:00
/**
* Creates a Like clause in the sql statement
*
* @param string $field
* @param mixed $val
* @param string $pos
* @return self
*/
public function like(string $field, $val, string $pos='both'): self
2012-04-30 16:06:06 -04:00
{
return $this->_like($field, $val, $pos);
2012-03-15 09:25:18 -04:00
}
2012-03-15 09:25:18 -04:00
/**
* Generates an OR Like clause
*
* @param string $field
* @param mixed $val
* @param string $pos
* @return self
2012-03-15 09:25:18 -04:00
*/
public function orLike(string $field, $val, string $pos='both'): self
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-15 09:25:18 -04:00
/**
* Generates a NOT LIKE clause
*
* @param string $field
* @param mixed $val
* @param string $pos
* @return self
2012-03-15 09:25:18 -04:00
*/
public function notLike(string $field, $val, string $pos='both'): self
2012-03-15 09:25:18 -04:00
{
return $this->_like($field, $val, $pos, 'NOT LIKE');
2012-03-15 09:25:18 -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
* @return self
2012-03-15 09:25:18 -04:00
*/
public function orNotLike(string $field, $val, string $pos='both'): self
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
/**
* Generates a 'Having' clause
*
* @param mixed $key
* @param mixed $val
* @return self
*/
public function having($key, $val=[]): self
2012-05-01 13:45:11 -04:00
{
return $this->_having($key, $val);
2012-05-01 13:45:11 -04:00
}
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
* @return self
2012-04-16 13:43:41 -04:00
*/
public function orHaving($key, $val=[]): self
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-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! 'Where' methods
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Specify condition(s) in the where clause of a query
* Note: this function works with key / value, or a
2012-03-15 09:25:18 -04:00
* passed array with key / value pairs
*
* @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
* @return self
2012-03-15 09:25:18 -04:00
*/
public function where($key, $val=[], $escape=NULL): self
2012-03-15 09:25:18 -04:00
{
return $this->_whereString($key, $val);
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
* @return self
2012-03-15 09:25:18 -04:00
*/
public function orWhere($key, $val=[]): self
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
* @return self
2012-03-15 09:25:18 -04:00
*/
public function whereIn($field, $val=[]): self
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
* @return self
2012-03-15 09:25:18 -04:00
*/
public function orWhereIn($field, $val=[]): self
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-15 09:25:18 -04:00
/**
* WHERE NOT IN (FOO) clause
*
* @param string $field
* @param mixed $val
* @return self
2012-03-15 09:25:18 -04:00
*/
public function whereNotIn($field, $val=[]): self
2012-03-15 09:25:18 -04:00
{
return $this->_whereIn($field, $val, 'NOT IN');
2012-03-15 09:25:18 -04:00
}
/**
* OR WHERE NOT IN (FOO) clause
*
2012-03-15 09:25:18 -04:00
* @param string $field
* @param mixed $val
* @return self
2012-03-15 09:25:18 -04:00
*/
public function orWhereNotIn($field, $val=[]): self
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-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
* @return self
2012-04-16 13:43:41 -04:00
*/
public function set($key, $val = NULL): self
2012-04-16 13:43:41 -04:00
{
if (is_scalar($key))
{
$pairs = [$key => $val];
}
else
{
$pairs = $key;
}
$keys = array_keys($pairs);
$values = array_values($pairs);
$this->state->appendSetArrayKeys($keys);
$this->state->appendValues($values);
2012-04-16 13:43:41 -04:00
// Use the keys of the array to make the insert/update string
// Escape the field names
$this->state->setSetArrayKeys(
array_map([$this->driver, '_quote'], $this->state->getSetArrayKeys())
);
2012-04-16 13:43:41 -04:00
// Generate the "set" string
$setString = implode('=?,', $this->state->getSetArrayKeys());
$setString .= '=?';
$this->state->setSetString($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
* @return self
2012-03-15 09:25:18 -04:00
*/
public function join(string $table, string $condition, string $type=''): self
{
2012-11-07 08:42:34 -05:00
// Prefix and quote table name
$tableArr = explode(' ', mb_trim($table));
$tableArr[0] = $this->driver->quoteTable($tableArr[0]);
$tableArr = $this->driver->quoteIdent($tableArr);
$table = implode(' ', $tableArr);
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;
$this->state->appendMap("\n" . strtoupper($type) . ' JOIN ', $condition, MapType::JOIN);
2012-03-15 09:25:18 -04:00
return $this;
}
2012-03-15 09:25:18 -04:00
/**
* Group the results by the selected field(s)
*
* @param mixed $field
* @return self
2012-03-15 09:25:18 -04:00
*/
public function groupBy($field): self
2012-03-15 09:25:18 -04:00
{
if ( ! is_scalar($field))
{
$newGroupArray = array_merge(
$this->state->getGroupArray(),
array_map([$this->driver, 'quoteIdent'], $field)
);
$this->state->setGroupArray($newGroupArray);
2012-03-15 09:25:18 -04:00
}
else
{
$this->state->appendGroupArray($this->driver->quoteIdent($field));
2012-03-15 09:25:18 -04:00
}
$this->state->setGroupString(' GROUP BY ' . implode(',', $this->state->getGroupArray()));
2012-03-15 09:25:18 -04:00
return $this;
}
2012-03-15 09:25:18 -04:00
/**
* Order the results by the selected field(s)
*
* @param string $field
* @param string $type
* @return self
2012-03-15 09:25:18 -04:00
*/
public function orderBy(string $field, string $type=''): self
2012-03-15 09:25:18 -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)
{
$rand = $this->driver->getSql()->random();
2016-10-12 22:12:25 -04:00
$type = $rand ?? 'ASC';
2012-03-15 09:25:18 -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);
$this->state->setOrderArray($field, $type);
2016-10-13 21:55:23 -04:00
$orderClauses = [];
2012-03-15 09:25:18 -04:00
// Flatten key/val pairs into an array of space-separated pairs
foreach($this->state->getOrderArray() 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-15 09:25:18 -04:00
// Set the final string
$orderString = ! isset($rand)
2016-10-13 21:55:23 -04:00
? "\nORDER BY ".implode(', ', $orderClauses)
2014-02-14 10:38:25 -05:00
: "\nORDER BY".$rand;
$this->state->setOrderString($orderString);
2012-03-15 09:25:18 -04:00
return $this;
}
2012-03-15 09:25:18 -04:00
/**
* Set a limit on the current sql statement
*
* @param int $limit
* @param int|null $offset
* @return self
2012-03-15 09:25:18 -04:00
*/
public function limit(int $limit, ?int $offset=NULL): self
2012-03-15 09:25:18 -04:00
{
$this->state->setLimit($limit);
$this->state->setOffset($offset);
2012-03-15 09:25:18 -04:00
return $this;
}
// --------------------------------------------------------------------------
// ! Query Grouping Methods
// --------------------------------------------------------------------------
/**
* Adds a paren to the current query for query grouping
*
* @return self
*/
public function groupStart(): self
{
$conj = empty($this->state->getQueryMap()) ? ' WHERE ' : ' ';
$this->state->appendMap($conj, '(', MapType::GROUP_START);
return $this;
}
2016-09-07 17:39:19 -04:00
/**
* Adds a paren to the current query for query grouping,
* prefixed with 'NOT'
*
* @return self
2016-09-07 17:39:19 -04:00
*/
public function notGroupStart(): self
2016-09-07 17:39:19 -04:00
{
$conj = empty($this->state->getQueryMap()) ? ' WHERE ' : ' AND ';
2016-10-12 20:32:23 -04:00
$this->state->appendMap($conj, ' NOT (', MapType::GROUP_START);
2016-09-07 17:39:19 -04:00
return $this;
}
/**
* Adds a paren to the current query for query grouping,
* prefixed with 'OR'
*
* @return self
*/
public function orGroupStart(): self
{
$this->state->appendMap('', ' OR (', MapType::GROUP_START);
return $this;
}
/**
* Adds a paren to the current query for query grouping,
* prefixed with 'OR NOT'
*
* @return self
*/
public function orNotGroupStart(): self
{
$this->state->appendMap('', ' OR NOT (', MapType::GROUP_START);
return $this;
}
/**
* Ends a query group
*
* @return self
*/
public function groupEnd(): self
{
$this->state->appendMap('', ')', MapType::GROUP_END);
return $this;
}
2012-08-09 12:15:36 -04:00
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! Query execution methods
// --------------------------------------------------------------------------
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
* @param int|null $limit
* @param int|null $offset
2016-10-12 22:12:25 -04:00
* @return PDOStatement
2012-03-15 09:25:18 -04:00
*/
public function get(string $table='', ?int $limit=NULL, ?int $offset=NULL): 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
if (is_int($limit))
2015-11-11 09:25:21 -05:00
{
$this->limit($limit, $offset);
}
return $this->_run('get', $table);
2012-03-15 09:25:18 -04:00
}
/**
* Convenience method for get() with a where clause
*
* @param string $table
* @param mixed $where
* @param int|null $limit
* @param int|null $offset
2016-10-12 22:12:25 -04:00
* @return PDOStatement
*/
public function getWhere(string $table, $where=[], ?int $limit=NULL, ?int $offset=NULL): PDOStatement
{
// Create the where clause
$this->where($where);
2012-08-09 12:15:36 -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
*/
public function countAll(string $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);
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
{
// 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
$result = $this->_run(QueryType::SELECT, $table, NULL, NULL, $reset);
$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
*/
public function insert(string $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);
}
return $this->_run(QueryType::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
*
* @param string $table
* @param array $data
2016-10-12 22:12:25 -04:00
* @return PDOStatement
*/
public function insertBatch(string $table, $data=[]): ?PDOStatement
{
// Get the generated values and sql string
[$sql, $data] = $this->driver->insertBatch($table, $data);
2014-02-21 15:08:00 -05:00
return $sql !== NULL
? $this->_run('', $table, $sql, $data)
: NULL;
}
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
*/
public function update(string $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);
}
return $this->_run(QueryType::UPDATE, $table);
2012-03-15 09:25:18 -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
2018-01-26 08:39:30 -05:00
* @param array $data
2016-09-07 17:39:19 -04:00
* @param string $where
2018-01-26 08:39:30 -05:00
* @return int|null
2016-09-07 17:39:19 -04:00
*/
2018-01-26 08:39:30 -05:00
public function updateBatch(string $table, array $data, string $where): ?int
2016-09-07 17:39:19 -04:00
{
2018-01-26 08:39:30 -05:00
if (empty($table) || empty($data) || empty($where))
{
return NULL;
}
2016-09-07 17:39:19 -04:00
// Get the generated values and sql string
2018-01-26 08:39:30 -05:00
[$sql, $data, $affectedRows] = $this->driver->updateBatch($table, $data, $where);
2016-09-07 17:39:19 -04:00
2018-01-26 08:39:30 -05:00
$this->_run('', $table, $sql, $data);
return $affectedRows;
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
*/
public function delete(string $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
return $this->_run(QueryType::DELETE, $table);
2012-03-15 09:25:18 -04:00
}
// --------------------------------------------------------------------------
2012-12-18 16:19:52 -05:00
// ! SQL Returning Methods
// --------------------------------------------------------------------------
/**
* 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
{
// Set the table
2015-11-11 09:25:21 -05:00
if ( ! empty($table))
{
$this->from($table);
}
return $this->_getCompile(QueryType::SELECT, $table, $reset);
}
/**
* 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
{
return $this->_getCompile(QueryType::INSERT, $table, $reset);
}
/**
2012-12-18 16:19:52 -05:00
* Returns the generated 'update' sql query
*
* @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
{
return $this->_getCompile(QueryType::UPDATE, $table, $reset);
}
/**
2012-12-18 16:19:52 -05:00
* Returns the generated 'delete' sql query
*
* @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
{
return $this->_getCompile(QueryType::DELETE, $table, $reset);
}
2012-03-15 09:25:18 -04:00
}