summaryrefslogtreecommitdiff
path: root/ext/pdo/pdo_sql_parser.re
Commit message (Collapse)AuthorAgeFilesLines
* Bump yearXinchen Hui2015-01-151-1/+1
|
* Update copyright year for re2c files as wellLior Kaplan2014-06-161-1/+1
|
* Fix bug #65946 - pdo_sql_parser.c permanently converts values bound to stringsRasmus Lerdorf2013-11-071-10/+13
|
* Fix bug #64953 (Postgres prepared statement positional parameter casting)Michael Wallner2013-08-201-2/+2
|
* typo fixes (accommodate, parameter)Veres Lajos2013-06-101-2/+2
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* Fix bug #61755 parsing bug can lead to access violationsJohannes Schlüter2012-04-191-5/+4
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Avoid strcpy() usageIlia Alshanetsky2011-08-081-2/+2
|
* Fixes for variety of issues identified by coverity scanIlia Alshanetsky2011-08-071-2/+3
|
* - Fixed bug #54929 (Parse error with single quote in sql comment)Felipe Pena2011-06-041-1/+3
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.re **/*.y **/*.lSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 2 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFH: Better fixFelipe Pena2008-11-131-7/+4
|
* - MFH: Fixed invalid readsFelipe Pena2008-11-131-1/+1
|
* - MFH: Fixed bug #43925 (Incorrect argument counter in prepared statements ↵Felipe Pena2008-10-231-1/+2
| | | | with pgsql)
* MFH:Felipe Pena2008-10-101-4/+4
| | | | | | | - Fixed bug #44251 (Question mark and an escaped singel quote lead to an exception) - Fixed bug #41125 (PDO mysql + quote() + prepare() can result in seg fault) Patch by: tsteiner at nerdclub dot net
* MFH: Bump copyright year, 1 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Revert addition of - char support for bound param namesIlia Alshanetsky2007-11-261-1/+1
|
* Fixed bug #43130 (Bound parameters cannot have - in their name)Ilia Alshanetsky2007-10-291-1/+1
|
* Fixed bug #41596 (Fixed a crash inside pdo_pgsql on some non-well-formedIlia Alshanetsky2007-06-051-2/+7
| | | | | SQL queries).
* Fixed bug #40417 (Allow multiple instances of the same named PDO token inIlia Alshanetsky2007-03-061-2/+14
| | | | | prepared statement emulation code).
* Fixed bug #40285 (The PDO prepare parser goes into an infinite loop inIlia Alshanetsky2007-02-011-1/+2
| | | | | some instances).
* MFH: fix infinite cycleNuno Lopes2007-01-031-6/+4
| | | | | #this was the infinite cycle that was bugging me in the gcov machine...
* Fixed bug #36798 (Error parsing named parameters with queries containingIlia Alshanetsky2006-12-051-5/+3
| | | | | high-ascii chars).
* Fixed bug #39483 (Problem with handling of \ char in prepared statements).Ilia Alshanetsky2006-12-041-2/+2
|
* Added missing check for mismatching number of tokens & bound params inIlia Alshanetsky2006-12-031-2/+7
| | | | | prepared statement emulation.
* Fixed a possible crashIlia Alshanetsky2006-11-231-3/+6
|
* Fixed a memory leak when named & positional params are being used in theIlia Alshanetsky2006-11-121-1/+2
| | | | | same query.
* Properly rewrite queries where a bound parameter appears more then once.Ilia Alshanetsky2006-01-251-4/+14
|
* bump the year and license versionfoobar2006-01-011-3/+3
|
* actually register PDO_PARAM_BOOL as a constant (doh!).Wez Furlong2005-09-101-2/+2
| | | | | | | When emulating bound parameters, pass booleans via the driver's quoter method, so that is has an opportunity to tweak it. Refs #33876: PDO misquotes/miscasts bool(false)
* Fix for #34233Edin Kadribasic2005-09-041-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* avoid :: when looking for named parameters.Wez Furlong2005-07-181-5/+6
| | | | | Refs Bug #33736.
* remember ? -> :pdox mapping so that binds by position can be mapped to names ↵Wez Furlong2005-07-121-7/+13
| | | | if required.
* - std not needed -> avoid warningMarcus Boerger2005-07-081-2/+2
|
* For named-parameter-to-named-parameter rewrites, we need to map the originalWez Furlong2005-07-081-0/+13
| | | | | names to the new names.
* add a bit of a hack to cater for pgsql prepared statements.Wez Furlong2005-07-081-2/+13
| | | | | | | | | These are effectively named statements with strong constraints on the naming format. We cater for this in a fairly generic way: allow a driver to replace the format string we use to generate names from positional parameters. In addition, if that format is set, we always force a rewrite from regular names to the strongly enforced names.
* Added missing header.Ilia Alshanetsky2005-04-141-0/+1
|
* *cough*Wez Furlong2005-02-261-1/+1
|
* fix for PECL #3545Wez Furlong2005-02-261-9/+29
|
* implement mapping of :name to ? parameters for drivers that only support ?Wez Furlong2005-02-131-3/+18
| | | | | | | | placeholders. The current restriction is that you may not use the same named parameter more than one in a given query, as there is a danger of scary things happen with the zval if it gets bound multiple times.
* it's only an error in emulation mode; rewrite happens in prepare, whichWez Furlong2005-02-131-1/+1
| | | | | happens before bindParam
* kill unused varIlia Alshanetsky2005-02-091-1/+0
|
* handle input LOBs (which are passed as streams) in bound parameter emulation.Wez Furlong2005-02-071-12/+38
| | | | | Update error handling.
* Don't segault when we have placeholders but no bound paramsEdin Kadribasic2005-02-061-0/+7
|
* pass param type to quoter functionsWez Furlong2005-02-051-1/+2
|
* Revise query parser so that it can rewrite from one bind syntax to another.Wez Furlong2005-01-211-1/+187
| | | | | Expose it as PDO_API. No drivers utilize this feature yet.