1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/lib/Doctrine/Query
romanb fc2f9f29bd Closes #405.
Syntax for getting input properly escaped through prepared statements:
$query->set('field', 'field + ?', $value)
or
$query->set('field', 'field + ? - ?', array($value1, $value2))
or simply
$query->set('field', '?', $value)
Ticket: 405
2007-07-24 11:34:00 +00:00
..
Filter 2007-06-19 12:25:28 +00:00
Abstract.php Closes #405. 2007-07-24 11:34:00 +00:00
Check.php 2007-05-16 21:28:33 +00:00
Condition.php 2007-05-24 19:47:28 +00:00
Exception.php 2007-01-02 19:33:22 +00:00
Filter.php 2007-06-25 20:52:42 +00:00
From.php 2007-05-24 19:47:28 +00:00
Groupby.php 2007-05-24 19:47:28 +00:00
Having.php 2007-06-27 18:42:47 +00:00
JoinCondition.php 2007-05-24 18:35:52 +00:00
Limit.php 2007-05-24 19:47:28 +00:00
Offset.php 2007-05-24 19:47:28 +00:00
Orderby.php 2007-06-27 17:41:02 +00:00
Parser.php 2007-05-15 10:07:05 +00:00
Part.php 2007-05-24 19:47:28 +00:00
Select.php 2007-05-24 19:47:28 +00:00
Set.php 2007-05-24 19:47:28 +00:00
Where.php fixed identifier quoting 2007-07-06 20:55:15 +00:00