Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use named parameters in SQL queries #681

Merged
merged 2 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions _test/QueryBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,29 +23,4 @@ public function test_join()
$qb->addLeftJoin('second', 'fourth', 'fourth', 'second.foo=fourth.foo');
$this->assertEquals(['first', 'second', 'fourth', 'third'], array_keys($qb->from));
}

public function test_placeholders()
{
$qb = new QueryBuilder();


$foo = $qb->addValue('foo');
$bar = $qb->addValue('bar');

$input = "this is $foo and $bar and $foo again";
$expect = "this is ? and ? and ? again";
$values = ['foo', 'bar', 'foo'];

$output = $qb->fixPlaceholders($input);

$this->assertEquals($expect, $output[0]);
$this->assertEquals($values, $output[1]);
}

public function test_placeholderfail()
{
$this->expectException(StructException::class);
$qb = new QueryBuilder();
$qb->fixPlaceholders('this has unknown placeholder :!!val7!!:');
}
}
2 changes: 1 addition & 1 deletion _test/StructTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected function getLang($key)
*/
protected function cleanWS($string)
{
return preg_replace('/\s+/s', '', $string);
return preg_replace(['/\s+/s', '/\:val(\d{1,3})/'], ['', '?'], $string);
}

/**
Expand Down
7 changes: 1 addition & 6 deletions _test/mock/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,13 @@ class QueryBuilder extends meta\QueryBuilder
{
public $from;

public function fixPlaceholders($sql)
{
return parent::fixPlaceholders($sql);
}

/**
* for debugging where statements
*
* @return array ($sql, $opts)
*/
public function getWhereSQL()
{
return $this->fixPlaceholders($this->filters()->toSQL());
return [$this->filters()->toSQL(), array_values($this->values)];
}
}
30 changes: 2 additions & 28 deletions meta/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public function addValue($value)
static $count = 0;
$count++;

$placeholder = ":!!val$count!!:"; // sqlite plugin does not support named parameters, yet so we have simulate it
$placeholder = ":val$count";
$this->values[$placeholder] = $value;
return $placeholder;
}
Expand Down Expand Up @@ -241,33 +241,7 @@ public function getSQL()
'ORDER BY ' . implode(",\n", $this->orderby) . "\n";
}

return $this->fixPlaceholders($sql);
}

/**
* Replaces the named placeholders with ? placeholders
*
* Until the sqlite plugin can use named placeholder properly
*
* @param string $sql
* @return array
*/
protected function fixPlaceholders($sql)
{
$vals = [];

while (preg_match('/(:!!val\d+!!:)/', $sql, $m)) {
$pl = $m[1];

if (!array_key_exists($pl, $this->values)) {
throw new StructException('Placeholder not found');
}

$sql = preg_replace("/$pl/", '?', $sql, 1);
$vals[] = $this->values[$pl];
}

return [$sql, $vals];
return [$sql, array_values($this->values)];
}

/**
Expand Down