summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd.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
| |
* | switch to the unified globals accessor where appropriateAnatol Belski2015-07-291-6/+2
| |
* | Rename prefixed mysqlnd functions - prefixed with undescore, which wereAndrey Hristov2015-04-071-10/+5
| | | | | | | | | | | | | | | | | | accessible through a macro. Also removing the access macros. These prefixed functions were used, similarly to many functions in Zend2, because of TSRMLS - the macro was adding the the tsrm pointer to the call. However, as in Zend3 no TSRM pointers are passed down the stack, because of the usage of cached TSRM pointer in a real thread local variable, these macros and prefixed naming have lost their purpose.
* | Split mysqlnd_stmt::execute in 2 logical parts :Andrey Hristov2015-04-071-2/+2
| | | | | | | | | | | | | | | | | | - mysqlnd_stmt::send_execute() which just creates the wire message by using an aux function and sends it to the server - mysqlnd_stmt::parse_execute_respose() which is responsible for handling the bytes sent from the server in response to COM_EXECUTE. This makes it possible to implement finer method overwriting in mysqlnd plugins.
* | Add more info to the calls:Andrey Hristov2015-04-071-2/+2
| | | | | | | | | | - let the callee knows whether it was called directly or indirectly - two NULL zval * parameters for future extension in a pecl plugin
* | cleanup the mod version macros, round 2Anatol Belski2015-03-231-1/+1
| |
* | made ZEND_TSRMLS_CACHE_* macros look like function callsAnatol Belski2015-02-161-1/+1
| | | | | | | | which also comply with the current semantics for such macros
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | second shot on removing TSRMLS_*Anatol Belski2014-12-141-5/+5
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-123/+123
| |
* | Merge remote-tracking branch 'origin/master' into native-tlsAnatol Belski2014-11-201-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * origin/master: (36 commits) NEWS adapt test for error message introduce in fix for #68463 Fix bug #68463 listen.allowed_clients can silently result in no allowed access run a few request in this test fix test fix test added info about some other macro changes added note about toolset and phpize added note about the response files split msgfmt_format_intlcalendar_variant*.phpt for ICU 54.1 split formatter_format*.phpt for ICP 54.1 split dateformat_timezone_arg_variations*.phpt for ICU 54.1 split dateformat_get_set_timezone_variant*.phpt for ICU 54.1 fix icu version to test split ext/intl/tests/dateformat_get_set_calendar_variant*.phpt for 54.1 split dateformat_formatObject_datetime_variant*.phpt for ICU 54.1 split dateformat_formatObject_calendar_variant*.phpt for ICU 54.1 split dateformat_create_cal_arg_variant2.phpt for ICU 53.1 and 54.1 clone dateformat_calendars_variant3.phpt for ICU 54.1 split collator_get_sort_key_variant3.phpt for icu 54.1 ...
| * | typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-191-1/+1
| | |
* | | converted some ext/mysql* and fixed ext/zlibAnatol Belski2014-10-151-1/+4
|/ /
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | reduce the struct size by 8 byte on 64 bitAnatol Belski2014-09-141-2/+2
| |
* | master renames phase 1Anatol Belski2014-08-251-12/+12
| |
* | ported mysql and mysqlndAnatol Belski2014-08-191-12/+12
| |
* | clean up - avoid reallocXinchen Hui2014-08-131-1/+1
| |
* | First set of phpng changes for mysqlndAndrey Hristov2014-05-201-2/+1
|/
* New result fetching mode for mysqlnd, which should use less memory butAndrey Hristov2014-04-101-3/+5
| | | | | | | | 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]
* Switch from a single flag to a flag byteAndrey Hristov2014-03-101-2/+3
|
* Refactor the result set data structures. Move more to the buffered and ↵Andrey Hristov2014-03-051-2/+1
| | | | | | | 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.5Andrey Hristov2013-12-041-1/+1
|\
| * Fix loss of precisionAndrey Hristov2013-12-041-1/+1
| |
* | Add savepoint and rollback to savepoint supportAndrey Hristov2013-02-081-0/+2
| |
* | Export new callsAndrey Hristov2013-02-071-2/+3
| |
* | Add support for connect attributes, as of MySQL 5.6Andrey Hristov2013-01-151-0/+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
| | |
* | | Add SHA256 authentication support - password hashing to mysqlndandrey2012-09-251-0/+1
| | | | | | | | | | | | Automatic switchover to SSL with plain-text password is not part of this
* | | trace allocations in a fileandrey2012-06-271-2/+4
| | |
* | | bump mysqlnd versionsandrey2012-05-031-3/+3
| | |
* | | Merge branch 'PHP-5.4'David Soria Parra2012-03-201-1/+1
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | * PHP-5.4: Replace $Revision$ with $Id$ in keyword expansion enable files Enable $Id$ expansion for files with the $Revision$ keyword Conflicts: ext/mysqlnd/mysqlnd.h
| * | Merge branch 'PHP-5.3' into PHP-5.4David Soria Parra2012-03-201-1/+1
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | * PHP-5.3: Replace $Revision$ with $Id$ in keyword expansion enable files Enable $Id$ expansion for files with the $Revision$ keyword Conflicts: ext/mysqlnd/mysqlnd.h
| | * Replace $Revision$ with $Id$ in keyword expansion enable filesDavid Soria Parra2012-03-201-1/+1
| | |
| | * - Year++Felipe Pena2012-01-011-1/+1
| | |
| | * this should be decided by configureAndrey Hristov2011-10-141-1/+0
| | |
| | * MYSQLND_NET refactored not to use any direct reference to MYSQLND (the ↵Andrey Hristov2011-10-101-0/+1
| | | | | | | | | | | | | | | | | | | | | connection) QC will need an ifdef-layer to compile with this
| | * extend the API in the backward compatible wayAndrey Hristov2011-05-031-0/+1
| | |
| | * Fix compressed build, make it easierAndrey Hristov2011-03-231-0/+4
| | |
| | * use ifdef all-around in the revertAndrey Hristov2011-02-251-1/+1
| | |
| | * revert also the version_idAndrey Hristov2011-02-251-2/+2
| | |
| | * revert to previous behaviorAndrey Hristov2011-02-251-0/+6
| | |
| | * move from macros to functions, which can be overwritten, if neededAndrey Hristov2011-02-251-5/+5
| | |
| | * - Year++Felipe Pena2011-01-011-1/+1
| | |
| | * last piece to enable trace logging on windowsAndrey Hristov2010-10-221-1/+1
| | |