summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_ext_plugin.h
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-18/+18
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|/
* New result fetching mode for mysqlnd, which should use less memory butAndrey Hristov2014-04-101-2/+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]
* Refactor the result set data structures. Move more to the buffered and ↵Andrey Hristov2014-03-051-0/+13
| | | | | | | unbuffered substructures. Add methods to these too. Preparing for pluggable interface for returning data to the engine (zvals, c-style, something else)
* Bump yearXinchen Hui2014-01-031-1/+1
|
* bump yearXinchen Hui2013-01-061-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Now really split the method tables and have differentAndrey Hristov2011-10-311-0/+3
| | | | | | | methods for the handle and the data object. Add auxiliary functions to work with the new methods. Add possibility to clone a connection object - shadow copy.
* Split struct MYSQLND in struct MYSQLND and struct MYSQLD_CONN_DATA.Andrey Hristov2011-10-311-0/+3
| | | | | A step in the direction of keeping internal data private
* shift code around to two new files - mysqlnd_driver.c Andrey Hristov2011-10-211-0/+66
and mysqlnd_ext_plugin.c (mysqlnd extension plugin)