summaryrefslogtreecommitdiff
path: root/ext/pdo
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed compilation warningsFelipe Pena2008-03-221-1/+1
|
* Fixed compilation warningsFelipe Pena2008-03-221-3/+3
|
* Fixed testDmitry Stogov2008-03-181-1/+0
|
* Unused function in HEAD, fixes compiler warningGwynne Raskind2008-03-101-0/+2
|
* New way for check void parametersFelipe Pena2008-03-042-12/+12
|
* MFB: Fixed bug #44166 (Parameter handling flaw inIlia Alshanetsky2008-03-031-1/+5
| | | | | PDO::getAvailableDrivers())
* - Fix get_parent_class() of PDORow instancesJohannes Schlüter2008-03-032-3/+29
|
* MFB: Better fix for bug #44189Ilia Alshanetsky2008-02-261-4/+0
|
* MFB: Fixed bug #44200 (A crash in PDO when no bound targets exists and yetIlia Alshanetsky2008-02-241-0/+4
| | | | | bound parameters are present)
* MFB: Fixed bug #44189 (PDO setAttribute() does not properly validate valuesIlia Alshanetsky2008-02-211-0/+14
| | | | | for native numeric options)
* MFB: Fixed bug #44171 (Invalid FETCH_COLUMN index does not raise an error)Ilia Alshanetsky2008-02-201-0/+2
|
* MFBNuno Lopes2008-02-191-1/+1
|
* MFB: Fixed Bug #44159 (Crash: $pdo->setAttribute(PDO::STATEMENT_ATTR_CLASS, ↵Felipe Pena2008-02-191-2/+2
| | | | NULL))
* Imporoved PHP binary size and startup speed with GCC4 visibility control (Nuno)Dmitry Stogov2008-01-301-8/+10
|
* MFB: move data to const segmentNuno Lopes2008-01-251-4/+4
|
* MFB: Missing patch bit from the FETCH_GROUP fixIlia Alshanetsky2008-01-141-0/+2
|
* MFB: Fixed a bug with PDO::FETCH_COLUMN|PDO::FETCH_GROUP mode when a columnIlia Alshanetsky2008-01-111-4/+19
| | | | | # by which to group by data is specified.
* MFB: Skip test for PostgreSQL driver since error is too dissimilar to otherIlia Alshanetsky2008-01-031-0/+1
| | | | | drivers
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-319-9/+9
|
* Bump copyright year, 1 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Test for bug 43663David Soria Parra2007-12-301-0/+23
|
* - Fixed bug #43663 (Extending PDO class with a __call() function doesn't work).David Soria Parra2007-12-301-2/+7
|
* docbook based spec docsWez Furlong2007-11-2717-0/+1596
|
* test commit mailWez Furlong2007-11-271-0/+2
|
* This commit was generated by cvs2svn to compensate for changes in r247182,Wez Furlong2007-11-271-0/+1
| | | | which included commits to RCS files with non-trunk default branches.
* MFB: Revert addition of - char support for bound param namesIlia Alshanetsky2007-11-262-11/+9
|
* - Fixed bug #43365 (Several enums have trailing commas)Jani Taskinen2007-11-261-1/+1
|
* revert previous pdo patchIlia Alshanetsky2007-11-201-5/+0
|
* MFB: Fixed bug #42978 (mismatch between number of bound params and valuesIlia Alshanetsky2007-11-201-0/+5
| | | | | causes a crash in pdo_pgsql)
* MFB: Fixed bug #43139 PDO ignores ATTR_DEFAULT_FETCH_MODE in some cases withIlia Alshanetsky2007-10-312-1/+40
| | | | | fetchAll()
* MFB: Test not relavent for sqlite that uses built-in bound syntaxIlia Alshanetsky2007-10-301-0/+1
|
* MFB: Fixed bug #43130 (Bound parameters cannot have - in their name)Ilia Alshanetsky2007-10-293-159/+309
|
* stmt->fetch.func.values is not a zval and should not be freed with FREE_ZVALYiduo (David) Wang2007-10-081-1/+1
|
* Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-072-11/+11
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-275-12/+12
|
* MFB: fix crash if stream is empty and reader function sets buffer as nullStanislav Malyshev2007-09-121-1/+5
|
* PDO is not experimental anymoreIlia Alshanetsky2007-08-261-0/+0
|
* MFB: Fixed bug #41596 (Fixed a crash inside pdo_pgsql on someIlia Alshanetsky2007-06-052-22/+32
| | | | | non-well-formed SQL queries).
* MFBIlia Alshanetsky2007-05-283-5/+29
|
* Fixed a typoIlia Alshanetsky2007-05-161-1/+1
|
* MFB: PDO:FETCH_KEY_PAIRIlia Alshanetsky2007-05-163-0/+36
|
* fix test namesAntony Dovgal2007-05-077-7/+7
|
* > date: 2006/12/09 22:18:42; author: wez; state: Exp; lines: +14 -6foobar2007-04-252-2/+3
| | | | | | | | | > merge PHP 5 pdo into HEAD. This source compiles on both PHP 5 and PHP 6. > If you're poking around in here, please make sure that any changes you make > compile on both PHP 5 and 6. Thanks! Same goes for Wez. :) (pecl build broken for pdo drivers)
* fix #40727 (segfault in PDO when failed to bind parameters)Antony Dovgal2007-03-071-3/+12
|
* fix a bug where PHP would enter in an infinite cycle with chars with ascii ↵Nuno Lopes2007-01-032-12/+8
| | | | | | | value > 127 while at it, remove the lim structure parameter (it wasn't being used)
* fix PDO_DRIVER_APINuno Lopes2007-01-031-1/+1
|
* fix lcov buildNuno Lopes2007-01-031-9/+9
|
* Bump year.Sebastian Bergmann2007-01-019-11/+11
|
* fix lcov/genhtml build (yes it is very picky)Nuno Lopes2006-12-221-11/+11
|
* merge PHP 5 pdo into HEAD. This source compiles on both PHP 5 and PHP 6.Wez Furlong2006-12-099-156/+359
| | | | | | If you're poking around in here, please make sure that any changes you make compile on both PHP 5 and 6. Thanks!