summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/php_mysqlnd.c
Commit message (Collapse)AuthorAgeFilesLines
* fix crash in MINFO when no mysqlnd plugins are loadedAnatol Belski2014-04-141-1/+1
|
* Merge branch 'PHP-5.6' of git.php.net:php-src into PHP-5.6Andrey Hristov2014-04-101-7/+7
|\ | | | | | | | | Conflicts: ext/mysqli/tests/mysqli_begin_transaction.phpt
| * Remove some usages of hashtable internalsNikita Popov2014-04-091-7/+7
| |
* | New result fetching mode for mysqlnd, which should use less memory butAndrey Hristov2014-04-101-3/+4
|/ | | | | | | | implies more memory copy. The old method is still available and can be used. It stays as default. Choosing the method is through a flag to mysqli_query()/mysqli_real_query() New mode can be forced with an INI setting, for all extensions that support this mode (ext/mysql and mysqli, because PDO due to it's architecture can't support it) The setting is mysqlnd.fetch_data_copy=[0|1]
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2013-01-061-1/+1
|\
| * Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2013-01-061-1/+1
| |\
| | * bump yearXinchen Hui2013-01-061-1/+1
| | |
| | * - Year++Felipe Pena2012-01-011-1/+1
| | |
| | * - Fix bug #55609 (mysqlnd cannot be built shared)Johannes Schlüter2011-09-061-0/+5
| | | | | | | | | | | | | | | | | | | | | # This adds an option --enable-mysqlnd to explicitly built mysqlnd, like any # other extension it can be used with =shared to build mysqlnd shared; # mysqlnd will implicitly enabled when requested from another extension
| | * - 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
| | |
| | * - Year++Felipe Pena2011-01-011-1/+1
| | |
| | * show tracingAndrey Hristov2010-10-281-0/+2
| | |
| | * Fixing compiler warning.Ulf Wendel2010-10-041-1/+1
| | |
| | * Switch from using PHP_MAJOR_VERSION to separate define forAndrey Hristov2010-08-121-1/+1
| | | | | | | | | | | | | | | | | | unicode. Unicode is no more, but these are "bookmarks" where to change mysqlnd, if Unicode becomes trendy again.
| | * export mysqlnd_globals_id, per JohannesAndrey Hristov2010-06-101-1/+1
| | |
| | * Add possibility to control the allocator in when PHP is compiledAndrey Hristov2010-05-041-0/+16
| | | | | | | | | | | | | | | with debug
| | * Fix problem spotted by Felipe.Andrey Hristov2010-04-221-1/+1
| | |
| | * adding what last commit was missingAndrey Hristov2010-04-221-0/+1
| | |
| | * Remove dead code and add possibility to fine tune the size ofAndrey Hristov2010-04-221-0/+1
| | | | | | | | | | | | | | | a mempool (used for result sets).
| | * - Fix copyrightsFelipe Pena2010-04-201-2/+2
| | |
| | * CS + WS changesAndrey Hristov2010-04-151-2/+2
| | |
| | * Fix for bug#49234 method not found ssl_setAndrey Hristov2010-04-151-0/+6
| | | | | | | | | | | | | | | Patch was tested and compiles on Windows. (Thanks Kalle)
| | * make mysqlnd's tracing API more reusableAndrey Hristov2010-01-131-1/+1
| | |
| | * this function should be exporten in all cases, not only under PHP6Andrey Hristov2010-01-111-1/+1
| | |
| | * Remove disabled code - threaded fetching. This can be implementedAndrey Hristov2009-12-091-5/+2
| | | | | | | | | | | | | | | | | | on a upper level and by offloading it we reduce the complexity of the core.
| | * - void is NaN, you can't do math ops on void. Declarations go first. Fix TS ↵Pierre Joye2009-11-301-2/+2
| | | | | | | | | | | | build
| | * Compressed protocol support + extensibility for mysqlndAndrey Hristov2009-11-201-1/+15
| | |
| | * Increase the minimal size of the command buffer, which is usedAndrey Hristov2009-10-071-3/+13
| | | | | | | | | | | | | | | | | | for sending queries and in the future commpressed patch for reading almost all packets from the wire instead of using stack buffers.
| | * Fix and tests for bug #49511 . mysqlnd and the MySQL Client Library ↵Ulf Wendel2009-09-161-0/+4
| | | | | | | | | | | | (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.
| | * Revert mysqlnd to RC3 state after issues with pconnectsJohannes Schlüter2009-06-251-2/+2
| | |
| | * Sync with PHP6 - TSRMLS_FETCHAndrey Hristov2009-06-111-2/+2
| | | | | | | | | | | | | | | | | | | | | Extract reference decrement in own function Remove PHPAPI of a function and make it static as it is not called externally
| | * - MFH: Removed UG(unicode) checksFelipe Pena2009-03-301-11/+7
| | |
| | * MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
| | |
| | * MFH: Improve order in MINFO outputJohannes Schlüter2008-10-011-7/+8
| | |
| | * Update mysqlndAndrey Hristov2008-05-071-0/+3
| | |
| | * MFB: Update CVS from the development treeAndrey Hristov2008-04-161-0/+2
| | |
| | * Fix compile warningAndrey Hristov2008-02-191-1/+1
| | |
| | * Another fixAndrey Hristov2008-02-141-4/+11
| | |
| | * Update mysqlnd - fix bg_storeAndrey Hristov2008-02-141-1/+2
| | |
| | * Fix the build, add a missing fileAndrey Hristov2008-01-291-0/+249
| |
* | change public key setting to PERDIR and finish code that allowsandrey2012-09-251-1/+1
| | | | | | | | to set the key file programatically per mysqli_options()
* | remove old unicode code, that is was compiled out by using a macroandrey2012-09-251-34/+2
| |
* | Add SHA256 authentication support - password hashing to mysqlndandrey2012-09-251-1/+9
| | | | | | | | Automatic switchover to SSL with plain-text password is not part of this
* | trace allocations in a fileandrey2012-06-271-2/+14
|/
* Fix #61704 (Crash apache, phpinfo() threading issue)Johannes Schlüter2012-05-081-9/+15
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Move from directly referencing an aggregated structure to using aAndrey Hristov2011-10-251-2/+2
| | | | | | pointer to a structure. The structure is still aggregated but we add a level of indirection for possible plugins to overwrite the storage
* api_ext to reverse_apiAndrey Hristov2011-10-191-3/+4
|