summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_ext_plugin.c
Commit message (Collapse)AuthorAgeFilesLines
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-9/+9
|
* 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/+14
| | | | | | | | 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/+62
| | | | | | | 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
|
* Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2013-01-061-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/+17
| | | | | | | | | | | | | | 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/+14
| | | | | | | | | | 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/+195
| | | | | | and mysqlnd_ext_plugin.c (mysqlnd extension plugin)
* - Year++Felipe Pena2012-01-011-1/+1
|
* Now really split the method tables and have differentAndrey Hristov2011-10-311-0/+17
| | | | | | | 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/+14
| | | | | A step in the direction of keeping internal data private
* add files that weren't committed with the previous commitAndrey Hristov2011-10-211-0/+194