summaryrefslogtreecommitdiff
path: root/ext/mysql
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #51242 (Empty mysql.default_port does not default to 3306 anymore, ↵Adam Harvey2010-03-092-0/+43
| | | | but 0).
* Fix bug#50416Andrey Hristov2010-02-081-0/+3
| | | | | PROCEDURE db.myproc can't return a result set in the given context
* The internal zval cache has been removed and not been reintroduced... remove ↵Ulf Wendel2010-01-041-4/+3
| | | | corresponding test code
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-033-3/+3
|
* Remove stub code which never actually was used for anything.Andrey Hristov2009-12-092-11/+0
| | | | | Things like this can be built on top of the core.
* Remove the zval caching from mysqlnd. It was disabled versions agoAndrey Hristov2009-12-092-35/+4
| | | | | | due to problems on windows, which were not debugged. Better have code that is disabled not in the core.
* - Fixed bug #50231 (Socket path passed using --with-mysql-sock is ignored ↵Jani Taskinen2009-11-301-12/+11
| | | | when mysqlnd is enabled)
* Fixing test: of course, libmysql won't care about open_basedir, but mysqlnd ↵Ulf Wendel2009-11-051-1/+4
| | | | should
* Fixing test: it didn't do a select_db and gave a false-positive with libmysqlUlf Wendel2009-11-052-16/+14
|
* Skipping if MySQL old password algorithm is in use as it seems to be the ↵Ulf Wendel2009-11-041-0/+13
| | | | case on gcov.php.net
* Fixing typo in SKIPIF and partly skipping tests if using remote MySQL ↵Ulf Wendel2009-10-201-0/+8
| | | | because LOAD LOCAL INFILE will fail
* Making test pass when MySQL runs on Win*Ulf Wendel2009-10-201-8/+12
|
* Bail if connect.inc gets included twice. Including twice is most likely a ↵Ulf Wendel2009-10-201-19/+23
| | | | 'bug'. See also http://news.php.net/php.cvs/60720
* Fixing a leak in mysqlnd when passing invalid fetch modes to mysqlnd.Ulf Wendel2009-09-302-2/+9
|
* Allow setting of default connection flags through the environment variable ↵Ulf Wendel2009-09-282-3/+7
| | | | MYSQL_TEST_CONNECT_FLAGS
* Fixing testUlf Wendel2009-09-221-24/+48
|
* Fix for bug#48754 mysql_close() crash php when no handle specifiedAndrey Hristov2009-09-182-5/+107
|
* Fix and tests for bug #49511 . mysqlnd and the MySQL Client Library ↵Ulf Wendel2009-09-161-0/+37
| | | | (libmysql) use different networking APIs. mysqlnd does use PHP streams whereas libmysql uses its own wrapper of the operating level network calls. PHP sets by default a read timeout of 60s for streams - php.ini, default_socket_timeout. This default applies to all streams that set no other timeout value. mysqlnd has not set any other value and therefore it connections of long running queries can have been cut off after default_socket_timeout seconds resulting in a 2006 - MySQL Server has gone away error message. The MySQL Client Library sets a default timeout of 365 * 24 * 3600 seconds (1year) and waits for other timeouts to happen, e.g. TCP/IP timeouts. mysqlnd now uses the same very long timeout. The value is configurable through a new php.ini setting: mysqlnd.net_read_timeout. mysqlnd.net_read_timeout gets used by any extension (ext/mysql, ext/mysqli, PDO_MySQL) that uses mysqlnd. mysqlnd tells PHP Streams to use mysqlnd.net_read_timeout. Please note that there may be subtle differences between MYSQL_OPT_READ_TIMEOUT from the MySQL Client Library and PHP Streams. E.g. MYSQL_OPT_READ_TIMEOUT is documented to work only for TCP/IP connections and, prior to MySQL 5.1.2, only for Windows. PHP streams may not have this limitation. Please check the streams documentation, if in doubt.
* Some extra test coverage for http://bugs.php.net/bug.php?id=48754 . Ulf Wendel2009-09-091-9/+22
|
* Next attempt to fix http://bugs.php.net/bug.php?id=48745. Patch by Andrey.Ulf Wendel2009-09-092-17/+44
|
* fix testsAntony Dovgal2009-08-293-4/+17
|
* Fixed compiler warningIlia Alshanetsky2009-07-281-1/+1
|
* Fixing tests to run with SQL_MODE=ANSI_QUOTES as well.Ulf Wendel2009-07-078-21/+21
|
* Global s/ini_get('unicode.semantics')/version check/ . Early PHP 6 times are ↵Ulf Wendel2009-07-0313-19/+19
| | | | gone. I hope unicode logic will not change any more
* Adding CLEAN sections, fixing some SKIPIF sections. Cool new run-tests.php, ↵Ulf Wendel2009-07-0243-46/+307
| | | | Zoe (and other) - its a great help to detect stinky SKIPIF and CLEAN
* Test for bug #48754Ulf Wendel2009-07-021-4/+16
|
* Changing tests to run with both PHP 6 and PHP 5.3 to make future MFH easier. ↵Ulf Wendel2009-07-0123-312/+316
| | | | Basically three changes over all files: a) s/unicode(/%unicode|string% b) s/[u/[%u|b% c) s/unicode.semantics/version_compare
* WSAndrey Hristov2009-05-261-59/+59
|
* Fix compiler warnings in ext/mysql, ext/mysqli and ext/pdo_mysqlKalle Sommer Nielsen2009-05-201-1/+3
|
* fix segfaultAntony Dovgal2009-03-271-1/+2
|
* - Removed:Felipe Pena2009-03-271-53/+33
| | | | | | | | - UG(unicode) checks - Changed: - ZEND_STR_TYPE -> IS_UNICODE - convert_to_text -> convert_to_unicode
* mysql_db_query() is always deprecatedJohannes Schlüter2009-03-252-7/+4
|
* - This is PHP 6 - if this ... ever gets outMarcus Boerger2009-03-102-2/+2
|
* fix testAntony Dovgal2009-02-191-8/+7
|
* Fix #47438 mysql_fetch_field ignores zero offseJohannes Schlüter2009-02-182-1/+40
|
* - Fixed tests (removed UEXPECT(F) section)Felipe Pena2009-01-0521-638/+9
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-314-4/+4
|
* Fix mysql_fetch_* and tests after param parsing changesJohannes Schlüter2008-12-014-12/+10
|
* New param parsing for ext/mysqlJohannes Schlüter2008-11-2824-344/+241
|
* Fixed bug #46409 (__invoke method called outside of object context when ↵Dmitry Stogov2008-11-271-2/+2
| | | | using array_map)
* Fix compiler warning (MFB: Ilia)Andrey Hristov2008-10-281-1/+1
|
* Warning if the library API version differs from the headers used to compile.Andrey Hristov2008-10-271-2/+26
| | | | | | Patch versions are not considered but major.minor Fix build of ext/mysql with 4.0.x and pre.
* initialize optional varsArnaud Le Blanc2008-10-211-3/+3
|
* No mysqli stuff in ext/mysqlJohannes Schlüter2008-09-292-15/+4
|
* Fixed uninitialized dataDmitry Stogov2008-07-251-0/+1
|
* Two less failing tests, one of which was definitely a leak in mysqli with ↵Andrey Hristov2008-07-221-9/+3
| | | | | | | mysqlnd and pconn. ext/mysql is being fixed with a better fix for similar leak.
* Fix a leak with pconn and mysqlndAndrey Hristov2008-07-221-0/+9
|
* MFB :Andrey Hristov2008-07-213-3/+14
| | | | | | | | Fix for bug#45179 --with-mysql-sock fails to compile & work Now --with-mysql-sock controls all mysql extensions. If provided it will be the default value as it was set in php.ini . php.ini will override it for ext/mysql and ext/mysqli but not for pdo_mysql
* Sync with bzrAndrey Hristov2008-07-151-3/+22
|
* Fix possible bug with persistent connectionsAndrey Hristov2008-06-241-1/+1
|