summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_palloc.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove the zval caching from mysqlnd. It was disabled versions agoAndrey Hristov2009-12-091-605/+0
| | | | | | due to problems on windows, which were not debugged. Better have code that is disabled not in the core.
* Use mnd_ wrappers wherever possible. Needed forAndrey Hristov2009-09-301-5/+5
| | | | | statistics.
* Fix for bug#48745Andrey Hristov2009-08-281-28/+9
| | | | | mysqlnd: mysql_num_fields returns wrong column count for mysql_list_fields
* Use Zend's allocator instead of libc's and also don't try to work onAndrey Hristov2009-06-161-4/+7
| | | | | zvals that are NULLs.
* MFB: Reference decrement in own function. Make a function which is notAndrey Hristov2009-06-111-5/+21
| | | | | called externally static, from PHPAPI.
* Fix a problem with cursors, which did not happen with unbuffered PS forAndrey Hristov2009-05-281-1/+6
| | | | | | | | | some reason. Double free of the data, which led to valgrind warnigns. The fix actually optimizes the code in this cases because the old code used copy_ctor while the new one skips it because it is not needed. Transferring data ownership and nulling works best, for PS where we always copy the string from the result set, unlike the text protocol.
* - Removed leftover UG(unicode) checksFelipe Pena2009-03-271-35/+32
|
* - Removed:Felipe Pena2009-03-271-7/+0
| | | | | | | | - UG(unicode) checks - Changed: - ZEND_STR_TYPE -> IS_UNICODE - convert_to_text -> convert_to_unicode
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* mysqlnd fixes for Windows :Andrey Hristov2008-11-201-1/+1
| | | | | | - less warnings - PHPAPI for mysqlnd_poll
* Sync with bzrAndrey Hristov2008-07-151-39/+35
|
* Even more debug infoAndrey Hristov2008-06-241-6/+22
|
* Added more debug info for tracking problemsAndrey Hristov2008-06-231-1/+29
|
* Update ext/mysql's and ext/mysqli's testsAndrey Hristov2008-04-241-6/+7
| | | | | | Add mysqli_stmt_more_result()/mysqli_stmt_next_result(), but only in mysqlnd builds as libmysql doesn't support this feature.
* Merge with internal versionAndrey Hristov2008-01-231-8/+12
|
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Sync mysqlnd with HEAD. Same sources as in 5_3Andrey Hristov2007-10-161-3/+3
|
* Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-7/+7
|
* Update mysqlnd in HEADAndrey Hristov2007-10-021-50/+57
| | | | | Updated ext/mysql and ext/mysqli in HEAD
* - Moved mysqnd to it's own directory: It is sort of an extension itself.Jani Taskinen2007-07-251-0/+558
(Similar to what ext/libxml is..)