summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/php_mysqlnd.c
Commit message (Collapse)AuthorAgeFilesLines
* year++Xinchen Hui2018-01-021-1/+1
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-041-1/+1
|
* Merge branch 'PHP-7.0'Andrey Hristov2016-03-161-4/+2
|\
| * Fix emails in headers. @mysql.com addresses are no more since many years.Andrey Hristov2016-03-161-4/+3
| |
* | Merge branch 'PHP-7.0'Nikita Popov2016-03-031-1/+1
|\ \ | |/
| * Move semicolon into TSRMLS_CACHE_EXTERN/DEFINENikita Popov2016-03-031-1/+1
| | | | | | | | Also re bug #71575.
* | Merge branch 'PHP-7.0'Lior Kaplan2016-01-011-1/+1
|\ \ | |/ | | | | | | | | | | * PHP-7.0: Update header to PHP Version 7 Happy new year (Update copyright to 2016) Happy new year (Update copyright to 2016)
| * Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
| |\ | | | | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| | * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| | |
| | * bump yearXinchen Hui2015-01-151-1/+1
| | |
* | | MNDR:Andrey Hristov2015-11-121-1/+0
|/ / | | | | | | - remove inclusion of uneeded headers
* | Use ZSTR_ API to access zend_string elements (this is just renaming without ↵Dmitry Stogov2015-06-301-4/+4
| | | | | | | | semantick changes).
* | cleanup the mod version macros, round 2Anatol Belski2015-03-231-1/+1
| |
* | made ZEND_TSRMLS_CACHE_* macros look like function callsAnatol Belski2015-02-161-2/+2
| | | | | | | | which also comply with the current semantics for such macros
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | trailing whitespace removalStanislav Malyshev2015-01-101-2/+2
| |
* | second shot on removing TSRMLS_*Anatol Belski2014-12-141-1/+1
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-9/+9
| |
* | converted some ext/mysql* and fixed ext/zlibAnatol Belski2014-10-151-0/+6
| |
* | Move smart_str implementation into Zend/Nikita Popov2014-09-211-1/+1
| | | | | | | | | | | | | | | | So we can use it there as well... For now I've retained the zend_smart_str_public.h header, though it would probably be better to just move that one struct into zend_types.h.
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | Refactored INI subsystem to use zend_string* instead of char*Dmitry Stogov2014-09-011-1/+1
| |
* | master renames phase 3Anatol Belski2014-08-251-4/+4
| |
* | master renames phase 1Anatol Belski2014-08-251-1/+1
| |
* | fixes to %pd format usageAnatol Belski2014-08-241-3/+3
| |
* | ported mysql and mysqlndAnatol Belski2014-08-191-4/+6
| |
* | Fixed segfault while info printingXinchen Hui2014-06-301-2/+2
| |
* | Fixed segfaultsXinchen Hui2014-06-181-4/+4
| |
* | Refactoring mysqlnd (incompleted, only mysqlnd ext compilable)Xinchen Hui2014-06-181-31/+22
|/
* 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).