php-src/ext/mysql
2009-09-16 15:00:54 +00:00
..
tests Fix and tests for bug #49511 . mysqlnd and the MySQL Client Library (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. 2009-09-16 15:00:54 +00:00
config.m4 Fix for bug#45179 --with-mysql-sock fails to compile & work 2008-07-21 12:58:51 +00:00
config.w32 - do not enable an ext when a lib/header fails 2008-06-23 18:40:29 +00:00
CREDITS - Proper format for CREDITS files 2002-08-21 05:41:49 +00:00
mysql.dsp - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5 2004-01-17 13:00:38 +00:00
mysql.mak Changes for NetWare makefile. 2003-01-06 09:05:59 +00:00
mysql_mysqlnd.h MFH: Bump copyright year, 3 of 3. 2008-12-31 11:15:49 +00:00
package.xml assign a version number 2005-09-04 17:10:56 +00:00
php_mysql.c MFH: Fix compiler warnings in ext/mysql, ext/mysqli and ext/pdo_mysql 2009-05-20 08:30:12 +00:00
php_mysql.h MFH: Bump copyright year, 3 of 3. 2008-12-31 11:15:49 +00:00
php_mysql_structs.h MFH: Bump copyright year, 3 of 3. 2008-12-31 11:15:49 +00:00