summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql
Commit message (Collapse)AuthorAgeFilesLines
* Bug #62593 Updated to account for INOUT parametersWill Fitch2012-10-301-1/+2
|
* Bug #62593 Updated test to verify bindParam doesn't change original valueWill Fitch2012-10-301-1/+3
|
* Bug #62593 Updated to always treat zval by valueWill Fitch2012-10-302-4/+9
|
* Bug #62593 Added test for changeWill Fitch2012-10-301-0/+44
|
* Bug #62593 Updated pdo_pgsql driver to convert boolean values to pg native ↵Will Fitch2012-10-301-1/+12
| | | | format in emulation mode
* - Fixed bug #61267: pdo_pgsql's PDO::exec() returns the number of SELECTedGustavo André dos Santos Lopes2012-03-082-1/+23
| | | | | rows on postgresql >= 9
* - Year++Felipe Pena2012-01-015-5/+5
|
* - Added ZEND_MOD_END macro to use in the end of zend_module_dep[]Felipe Pena2011-08-061-1/+1
|
* - Make usage of new PHP_FE_END macroFelipe Pena2011-07-251-1/+1
|
* - Drop C++ style commentsFelipe Pena2011-06-101-2/+2
|
* Removed test for functionality available in 5.4+Ilia Alshanetsky2011-05-311-66/+0
|
* Removed unnecessary rinit/rshutdownIlia Alshanetsky2011-05-312-22/+2
|
* Oops, can't cache it here because it won't workRasmus Lerdorf2011-05-151-5/+5
| | | | | | in autoconf2.13 and we still support that version in this branch
* Cache the pdo include pathRasmus Lerdorf2011-05-151-5/+5
|
* Fix bug #54318 (Non-portable grep option used in PDO pgsql configuration).Adam Harvey2011-03-221-1/+2
| | | | | Patch by Ben Walton <bwalton at artsci dot utoronto dot ca>.
* - Year++Felipe Pena2011-01-015-5/+5
|
* - Fixed bug #53517 (segfault in pgsql_stmt_execute() when postgres is down)Felipe Pena2010-12-101-1/+1
| | | | | patch by: gyp at balabit dot hu
* - Fixed tests not passing under windows because of the directory separatorPatrick Allaert2010-11-081-1/+1
| | | | | difference (thanks Eyal Teutsch for reporting)
* Removed the in_transaction handler for 5.3 to avoid BC break due to ↵Ilia Alshanetsky2010-06-151-10/+0
| | | | structure change
* Added inTransaction() method to PDO, with specialized support for PostgresIlia Alshanetsky2010-06-104-1/+91
|
* Added support for copy to/from array/file for pdo_pgsql extension. Ilia Alshanetsky2010-06-103-0/+882
| | | | | | # original patch by Denis Gasparin
* Fixed bug #50728 (All PDOExceptions hardcode 'code' property to 0)Ilia Alshanetsky2010-01-121-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-035-5/+5
|
* - Updated pdo_pgsql tests to be 8.5+ friendlyMatteo Beccati2009-12-252-4/+8
|
* Revert attempt at supporting both autoconf 2.13 andRasmus Lerdorf2009-11-291-5/+5
| | | | | | | | | | | modern versions in the same build chain. There are simply too many broken things in 2.13 to make it work. Cache handling is broken as well which is why I need to revert the pdo_inc_path cache fix as well. trunk is now 2.60+ only and I'll work on cleaning out all the legacy cruft from there.
* Someone strap down Jani and give him a sedative please.Rasmus Lerdorf2009-11-251-5/+5
| | | | | | This makes our toolchain work with the latest versions of autoconf and avoids a lot of end-user grief.
* - Properly fixed bug #49985 (pdo_pgsql prepare() re-use previous aborted ↵Matteo Beccati2009-11-044-3/+39
| | | | | | | | transaction). # Removed usage of the memory address when generating prepared statemend names # as uniqueness can't be enforced. Used a statment counter instead.
* - Reverting previous fix for bug #49985 Matteo Beccati2009-11-041-17/+3
| | | | | # Unmerged changes from revision 289924
* - Fixed bug #49985 (pdo_pgsql prepare() re-use previous aborted transaction).Ilia Alshanetsky2009-10-261-3/+17
|
* - Fixed bug #48764 (PDO_pgsql::query always uses implicit prepared ↵Matteo Beccati2009-10-074-8/+161
| | | | | | | statements if v3 proto available) # original patch by Mark Kirkwood
* MFH: TypoKalle Sommer Nielsen2009-05-251-1/+1
|
* MFHMatteo Beccati2009-05-121-86/+0
| | | | | | | | - Moved test for bug #44861 to PDO commons and added support for pdo_oci # This allows scrollable cursors to be tested with all the drivers # that currently support them (pgsql and oci), ensuring a consistent # behaviour. The test is skipped when using other drivers.
* MFHMatteo Beccati2009-05-123-1/+19
| | | | | - Fixed bug #48188
* MFH:Matteo Beccati2009-04-302-17/+0
| | | | | - Removed HAVE_PQEXECPARAMS which was left out during the previous commit
* MFH:Matteo Beccati2009-04-305-138/+29
| | | | | | | | | | | | - Changed PDO_PGSQL configure script to require libpq 7.4 - Cleaned up usage of HAVE_PQ* defines - Fixed compiler warnings - Removed custom implementation of PQunescapeByte # Rationale: # - PDO_PGSQL couldn't even compile when using libpq 7.3 # - PostgreSQL 7.3 is unsupported since a long time # - Got consensus from pgsql devs on freenode
* MFH:Matteo Beccati2009-04-232-8/+18
| | | | | | | | - Reverted previous fix for bug #46274 and properly fixed it - Fixed bug #48060 # Also added tests for pdo_oci as it's the only other driver currently # using streams: no regression found
* - MFH: 8.3.x supports pqpreparePierre Joye2009-04-011-0/+1
|
* - fix build when pqprepare does not existPierre Joye2009-04-011-0/+2
|
* - Fixed bug #44861 (scrollable cursor don't work with pgsql)Matteo Beccati2009-03-283-16/+114
|
* MFH:Matteo Beccati2009-03-281-0/+5
| | | | | - Added missing #undefs, fixing compile warnings
* - add path for libpq (other are kept)Pierre Joye2009-03-091-1/+1
|
* MFH: Fixed test bug #47311 (PDO::PARAM_LOB columns need to be bound before ↵Felipe Pena2009-02-111-2/+34
| | | | execute() on PgSQL)
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-315-5/+5
|
* - MFH: Fixed bug #43925 (Incorrect argument counter in prepared statements ↵Felipe Pena2008-10-231-0/+59
| | | | with pgsql)
* - Fixed compiler warningsFelipe Pena2008-10-121-0/+5
|
* - Complete the fix for #46274, and testsFelipe Pena2008-10-122-0/+172
|
* - Fixed bug #46249 (pdo_pgsql always fill in NULL for empty BLOB)Felipe Pena2008-10-111-2/+8
| | | | | - Fixed bug #46274 (pdo_pgsql - Segfault when using PDO::ATTR_STRINGIFY_FETCHES and blob)
* MFH: Fix PDO configure dependancy: If --disable-pdo is used, disable allJani Taskinen2008-07-251-6/+7
| | | | | | MFH: enabled-by-default drivers. Also error out if you try to configure MFH: a driver as static but pdo is disabled.
* - really check for the dependency, libs and header and don't enable the ext ↵Pierre Joye2008-06-221-1/+1
| | | | if something is missing
* Better fix for bug #44189Ilia Alshanetsky2008-02-261-0/+3
|