Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Updated pdo_pgsql tests to be 8.5+ friendly | Matteo Beccati | 2009-12-25 | 1 | -1/+1 |
| | |||||
* | - Fixed bug #50458 (PDO::FETCH_FUNC fails with Closures) | Pierrick Charron | 2009-12-14 | 1 | -0/+29 |
| | |||||
* | - Fixed bug #49521 (PDO fetchObject sets values before calling constructor) | Felipe Pena | 2009-11-15 | 1 | -5/+5 |
| | | | | | (patch by Pierrick) | ||||
* | - Fixed PDORow and PDOStatement crashes when instantiating throught Reflection | Felipe Pena | 2009-10-12 | 1 | -0/+21 |
| | |||||
* | MFH | Matteo Beccati | 2009-05-12 | 1 | -0/+104 |
| | | | | | | | | - 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. | ||||
* | MFH: | Matteo Beccati | 2009-04-02 | 1 | -0/+78 |
| | | | | | | | | - Fixed bug #44173 (PDO->query() parameter parsing/checking needs an update) # The changeset is longer than really needed because pdo_stmt.c was # refactored to remove the "goto" | ||||
* | - Fix typo | Felipe Pena | 2009-03-26 | 1 | -1/+1 |
| | |||||
* | MFH: - Fixed bug #47769 (Strange extends PDO) | Felipe Pena | 2009-03-26 | 1 | -0/+32 |
| | |||||
* | MFH: | Felipe Pena | 2009-03-23 | 1 | -0/+51 |
| | | | | | | - Fixed bug #44409 (PDO::FETCH_SERIALIZE calls __construct()) Patch by: matteo at beccati dot com | ||||
* | - Missing "DROP TABLE" | Felipe Pena | 2009-02-16 | 1 | -0/+3 |
| | |||||
* | - MFH: Fixed bug #47297 (pdo_033.phpt fails on PgSQL) | Felipe Pena | 2009-02-04 | 1 | -1/+3 |
| | | | | | Patch by matteo at beccati dot com | ||||
* | create temporary db in the current dir and cleanup on completion | Antony Dovgal | 2009-01-05 | 1 | -2/+4 |
| | |||||
* | MFH: Add mysqlnd support for PDO_mysql, fixes at least bug#41997,#42499, | Johannes Schlüter | 2008-07-21 | 9 | -34/+44 |
| | | | | | | | | | | | | | | | | | | | | | | | | pecl#12794, pecl#12401 # Running the tests: # (Note: Doesn't work currnetly on HEAD, see: # http://news.php.net/php.qa/64378) # # PDO_MYSQL_TEST_DSN - DSN # For example: mysql:dbname=test;host=localhost;port=3306 # # PDO_MYSQL_TEST_HOST - database host # PDO_MYSQL_TEST_DB - database (schema) name # PDO_MYSQL_TEST_SOCKET - database server socket # PDO_MYSQL_TEST_ENGINE - storage engine to use # PDO_MYSQL_TEST_USER - database user # PDO_MYSQL_TEST_PASS - database user password # PDO_MYSQL_TEST_CHARSET - database charset # # NOTE: if any of PDO_MYSQL_TEST_[HOST|DB|SOCKET|ENGINE|CHARSET] is # part of PDO_MYSQL_TEST_DSN, the values must match. That is, for example, # for PDO_MYSQL_TEST_DSN = mysql:dbname=test you MUST set PDO_MYSQL_TEST_DB=test. | ||||
* | - MFH: Add check for avoid segfault when trying instantiate PDORow manually | Felipe Pena | 2008-05-14 | 1 | -0/+10 |
| | |||||
* | fix SKIPIFs | Nuno Lopes | 2008-04-10 | 2 | -1/+5 |
| | | | | | # Patch by Christian Hoffmann | ||||
* | remove duplicated sections | Nuno Lopes | 2008-03-17 | 1 | -1/+0 |
| | |||||
* | MFH: Fix get_parent_class() of PDORow instances | Johannes Schlüter | 2008-03-03 | 1 | -0/+22 |
| | |||||
* | Fix test | Felipe Pena | 2008-02-22 | 1 | -2/+3 |
| | |||||
* | New test | Felipe Pena | 2008-02-19 | 1 | -0/+32 |
| | |||||
* | some BDs (e.g. firebird) dont support text, so replace it with varchar(255). | Nuno Lopes | 2008-02-19 | 1 | -1/+1 |
| | |||||
* | Skip test for PostgreSQL driver since error is too dissimilar to other | Ilia Alshanetsky | 2008-01-03 | 1 | -0/+1 |
| | | | | | drivers | ||||
* | - Fixed bug #43663 (Extending PDO class with a __call() function doesn't work). | David Soria Parra | 2007-12-30 | 1 | -0/+23 |
| | | | | | CVS | ||||
* | fix test | Antony Dovgal | 2007-11-27 | 1 | -0/+1 |
| | |||||
* | fix test | Antony Dovgal | 2007-11-27 | 1 | -2/+4 |
| | |||||
* | fix test | Antony Dovgal | 2007-11-08 | 1 | -10/+10 |
| | |||||
* | Fixed test | Ilia Alshanetsky | 2007-11-04 | 1 | -16/+16 |
| | |||||
* | Fixed bug #43139 PDO ignores ATTR_DEFAULT_FETCH_MODE in some cases with ↵ | Ilia Alshanetsky | 2007-10-31 | 1 | -0/+34 |
| | | | | fetchAll() | ||||
* | Test not relavent for sqlite that uses built-in bound syntax | Ilia Alshanetsky | 2007-10-30 | 1 | -0/+1 |
| | |||||
* | Fixed bug #43130 (Bound parameters cannot have - in their name) | Ilia Alshanetsky | 2007-10-29 | 1 | -0/+30 |
| | |||||
* | Fixed bug #42917 (PDO::FETCH_KEY_PAIR doesn't work with setFetchMode) | Ilia Alshanetsky | 2007-10-11 | 1 | -0/+40 |
| | |||||
* | - Fixed bug #42452 (PDO classes do not expose Reflection API information) | Hannes Magnusson | 2007-08-30 | 2 | -2/+2 |
| | | | | | - Fixed tests | ||||
* | Fixed bug #40757 (get_object_vars get nothing in child class) | Dmitry Stogov | 2007-07-24 | 1 | -10/+10 |
| | | | | | Fixed bug #41929 (Foreach on object does not iterate over all visible properties) | ||||
* | fix test | Antony Dovgal | 2007-07-23 | 1 | -1/+1 |
| | |||||
* | Added test for KEY_PAIR code and fixed KEY_PAIR detection code | Ilia Alshanetsky | 2007-07-22 | 1 | -27/+25 |
| | |||||
* | Fixed test for PostgreSQL | Ilia Alshanetsky | 2007-06-03 | 1 | -0/+1 |
| | |||||
* | Fixed test to work with postgresql | Ilia Alshanetsky | 2007-05-19 | 1 | -1/+1 |
| | |||||
* | Fix paths for ext/sqlite | Hannes Magnusson | 2007-05-17 | 1 | -2/+2 |
| | |||||
* | Make test work in sqlite | Ilia Alshanetsky | 2007-05-16 | 1 | -1/+1 |
| | |||||
* | [DOC] Added PDO::FETCH_KEY_PAIR mode that will fetch a 2 column result set | Ilia Alshanetsky | 2007-05-16 | 1 | -0/+64 |
| | | | | | into an associated array. | ||||
* | fix test names | Antony Dovgal | 2007-05-07 | 10 | -10/+10 |
| | |||||
* | Fixed test mixup | Ilia Alshanetsky | 2007-02-02 | 2 | -5/+55 |
| | |||||
* | Fixed bug #40285 (The PDO prepare parser goes into an infinite loop in | Ilia Alshanetsky | 2007-02-01 | 1 | -28/+5 |
| | | | | | some instances). | ||||
* | Fixed test | Ilia Alshanetsky | 2006-12-09 | 1 | -3/+2 |
| | |||||
* | Fixed bug #36798 (Error parsing named parameters with queries containing | Ilia Alshanetsky | 2006-12-05 | 1 | -0/+32 |
| | | | | | high-ascii chars). | ||||
* | Fix test | Hannes Magnusson | 2006-12-05 | 1 | -1/+1 |
| | |||||
* | Fixed test (user is a reserved keyword in pgsql) | Ilia Alshanetsky | 2006-12-04 | 1 | -2/+2 |
| | |||||
* | Fixed bug #39527 (Failure to retrieve results when multiple unbuffered, | Ilia Alshanetsky | 2006-12-02 | 3 | -0/+12 |
| | | | | | prepared statements are used in pdo_mysql). | ||||
* | add test | Antony Dovgal | 2006-11-28 | 1 | -0/+51 |
| | |||||
* | Fixed bug #39398 (Booleans are not automatically translated to integers). | Ilia Alshanetsky | 2006-11-07 | 1 | -0/+35 |
| | |||||
* | Fixed bug #37870 (pgo_pgsql tries to de-allocate unused statements). | Ilia Alshanetsky | 2006-09-19 | 1 | -2/+2 |
| | | | | | | | Fixed bug #36681 (pdo_pgsql driver incorrectly ignored some errors). Fixed test for bug #38253 not to use faulty SQL that generates errors in PostgreSQL |