Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'PHP-5.6' into PHP-7.0 | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
|\ | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016) | ||||
| * | Happy new year (Update copyright to 2016) | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
| | | |||||
| * | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | switch to the unified globals accessor where appropriate | Anatol Belski | 2015-07-29 | 1 | -6/+2 |
| | | |||||
* | | Rename prefixed mysqlnd functions - prefixed with undescore, which were | Andrey Hristov | 2015-04-07 | 1 | -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 Hristov | 2015-04-07 | 1 | -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 Hristov | 2015-04-07 | 1 | -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 2 | Anatol Belski | 2015-03-23 | 1 | -1/+1 |
| | | |||||
* | | made ZEND_TSRMLS_CACHE_* macros look like function calls | Anatol Belski | 2015-02-16 | 1 | -1/+1 |
| | | | | | | | | which also comply with the current semantics for such macros | ||||
* | | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | second shot on removing TSRMLS_* | Anatol Belski | 2014-12-14 | 1 | -5/+5 |
| | | |||||
* | | first shot remove TSRMLS_* things | Anatol Belski | 2014-12-13 | 1 | -123/+123 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into native-tls | Anatol Belski | 2014-11-20 | 1 | -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_fixer | Veres Lajos | 2014-11-19 | 1 | -1/+1 |
| | | | |||||
* | | | converted some ext/mysql* and fixed ext/zlib | Anatol Belski | 2014-10-15 | 1 | -1/+4 |
|/ / | |||||
* | | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
| | | |||||
* | | reduce the struct size by 8 byte on 64 bit | Anatol Belski | 2014-09-14 | 1 | -2/+2 |
| | | |||||
* | | master renames phase 1 | Anatol Belski | 2014-08-25 | 1 | -12/+12 |
| | | |||||
* | | ported mysql and mysqlnd | Anatol Belski | 2014-08-19 | 1 | -12/+12 |
| | | |||||
* | | clean up - avoid realloc | Xinchen Hui | 2014-08-13 | 1 | -1/+1 |
| | | |||||
* | | First set of phpng changes for mysqlnd | Andrey Hristov | 2014-05-20 | 1 | -2/+1 |
|/ | |||||
* | New result fetching mode for mysqlnd, which should use less memory but | Andrey Hristov | 2014-04-10 | 1 | -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 byte | Andrey Hristov | 2014-03-10 | 1 | -2/+3 |
| | |||||
* | Refactor the result set data structures. Move more to the buffered and ↵ | Andrey Hristov | 2014-03-05 | 1 | -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 year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 |
| | |||||
* | Merge branch 'PHP-5.4' into PHP-5.5 | Andrey Hristov | 2013-12-04 | 1 | -1/+1 |
|\ | |||||
| * | Fix loss of precision | Andrey Hristov | 2013-12-04 | 1 | -1/+1 |
| | | |||||
* | | Add savepoint and rollback to savepoint support | Andrey Hristov | 2013-02-08 | 1 | -0/+2 |
| | | |||||
* | | Export new calls | Andrey Hristov | 2013-02-07 | 1 | -2/+3 |
| | | |||||
* | | Add support for connect attributes, as of MySQL 5.6 | Andrey Hristov | 2013-01-15 | 1 | -0/+1 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Xinchen Hui | 2013-01-06 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2013-01-06 | 1 | -1/+1 |
| |\ | |||||
| | * | bump year | Xinchen Hui | 2013-01-06 | 1 | -1/+1 |
| | | | |||||
* | | | Add SHA256 authentication support - password hashing to mysqlnd | andrey | 2012-09-25 | 1 | -0/+1 |
| | | | | | | | | | | | | Automatic switchover to SSL with plain-text password is not part of this | ||||
* | | | trace allocations in a file | andrey | 2012-06-27 | 1 | -2/+4 |
| | | | |||||
* | | | bump mysqlnd versions | andrey | 2012-05-03 | 1 | -3/+3 |
| | | | |||||
* | | | Merge branch 'PHP-5.4' | David Soria Parra | 2012-03-20 | 1 | -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.4 | David Soria Parra | 2012-03-20 | 1 | -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 files | David Soria Parra | 2012-03-20 | 1 | -1/+1 |
| | | | |||||
| | * | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | | | |||||
| | * | this should be decided by configure | Andrey Hristov | 2011-10-14 | 1 | -1/+0 |
| | | | |||||
| | * | MYSQLND_NET refactored not to use any direct reference to MYSQLND (the ↵ | Andrey Hristov | 2011-10-10 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | connection) QC will need an ifdef-layer to compile with this | ||||
| | * | extend the API in the backward compatible way | Andrey Hristov | 2011-05-03 | 1 | -0/+1 |
| | | | |||||
| | * | Fix compressed build, make it easier | Andrey Hristov | 2011-03-23 | 1 | -0/+4 |
| | | | |||||
| | * | use ifdef all-around in the revert | Andrey Hristov | 2011-02-25 | 1 | -1/+1 |
| | | | |||||
| | * | revert also the version_id | Andrey Hristov | 2011-02-25 | 1 | -2/+2 |
| | | | |||||
| | * | revert to previous behavior | Andrey Hristov | 2011-02-25 | 1 | -0/+6 |
| | | | |||||
| | * | move from macros to functions, which can be overwritten, if needed | Andrey Hristov | 2011-02-25 | 1 | -5/+5 |
| | | | |||||
| | * | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | | | |||||
| | * | last piece to enable trace logging on windows | Andrey Hristov | 2010-10-22 | 1 | -1/+1 |
| | | |