silverstripe-sqlite3/code/SQLite3QueryBuilder.php

108 lines
3.5 KiB
PHP
Raw Normal View History

<?php
namespace SilverStripe\SQLite;
use SilverStripe\ORM\Queries\SQLAssignmentRow;
use SilverStripe\ORM\Queries\SQLInsert;
use SilverStripe\ORM\Queries\SQLSelect;
use SilverStripe\ORM\Connect\DBQueryBuilder;
use InvalidArgumentException;
/**
* Builds a SQL query string from a SQLExpression object
*
* @package SQLite3
*/
2015-12-17 19:11:01 +01:00
class SQLite3QueryBuilder extends DBQueryBuilder
{
2015-12-17 19:11:01 +01:00
/**
* @param SQLInsert $query
* @param array $parameters
* @return string
*/
protected function buildInsertQuery(SQLInsert $query, array &$parameters)
{
// Multi-row insert requires SQLite specific syntax prior to 3.7.11
// For backwards compatibility reasons include the "union all select" syntax
2014-10-03 21:30:47 +02:00
2015-12-17 19:11:01 +01:00
$nl = $this->getSeparator();
$into = $query->getInto();
2015-12-17 19:11:01 +01:00
// Column identifiers
$columns = $query->getColumns();
2015-12-17 19:11:01 +01:00
// Build all rows
$rowParts = array();
foreach ($query->getRows() as $row) {
// Build all columns in this row
/** @var SQLAssignmentRow $row */
2015-12-17 19:11:01 +01:00
$assignments = $row->getAssignments();
// Join SET components together, considering parameters
$parts = array();
foreach ($columns as $column) {
// Check if this column has a value for this row
if (isset($assignments[$column])) {
// Assigment is a single item array, expand with a loop here
foreach ($assignments[$column] as $assignmentSQL => $assignmentParameters) {
$parts[] = $assignmentSQL;
$parameters = array_merge($parameters, $assignmentParameters);
break;
}
} else {
// This row is missing a value for a column used by another row
$parts[] = '?';
$parameters[] = null;
}
}
$rowParts[] = implode(', ', $parts);
}
$columnSQL = implode(', ', $columns);
$sql = "INSERT INTO {$into}{$nl}($columnSQL){$nl}SELECT " . implode("{$nl}UNION ALL SELECT ", $rowParts);
2015-12-17 19:11:01 +01:00
return $sql;
}
2014-10-03 21:30:47 +02:00
2015-12-17 19:11:01 +01:00
/**
* Return the LIMIT clause ready for inserting into a query.
*
* @param SQLSelect $query The expression object to build from
* @param array $parameters Out parameter for the resulting query parameters
* @return string The finalised limit SQL fragment
*/
public function buildLimitFragment(SQLSelect $query, array &$parameters)
{
$nl = $this->getSeparator();
2014-10-03 21:30:47 +02:00
2015-12-17 19:11:01 +01:00
// Ensure limit is given
$limit = $query->getLimit();
if (empty($limit)) {
return '';
}
2014-10-03 21:30:47 +02:00
2015-12-17 19:11:01 +01:00
// For literal values return this as the limit SQL
if (! is_array($limit)) {
return "{$nl}LIMIT $limit";
}
2014-10-03 21:30:47 +02:00
2015-12-17 19:11:01 +01:00
// Assert that the array version provides the 'limit' key
if (! array_key_exists('limit', $limit) || ($limit['limit'] !== null && ! is_numeric($limit['limit']))) {
throw new InvalidArgumentException(
'SQLite3QueryBuilder::buildLimitSQL(): Wrong format for $limit: '. var_export($limit, true)
);
}
2014-10-03 21:30:47 +02:00
2015-12-17 19:11:01 +01:00
$clause = "{$nl}";
if ($limit['limit'] !== null) {
$clause .= "LIMIT {$limit['limit']} ";
} else {
$clause .= "LIMIT -1 ";
}
2015-12-17 19:11:01 +01:00
if (isset($limit['start']) && is_numeric($limit['start']) && $limit['start'] !== 0) {
$clause .= "OFFSET {$limit['start']}";
}
return $clause;
}
}