summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli.c
Commit message (Collapse)AuthorAgeFilesLines
...
* fix bug #36898 (__set() leaks in classes extending internal ones)Antony Dovgal2006-03-291-6/+4
| | | | | | | | | Added: ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC) ZEND_API void zend_object_std_dtor(zend_object *object TSRMLS_DC) to initialize and destroy zend_object structs
* fix and testcase for bug #36745Georg Richter2006-03-241-0/+1
|
* Fix for bug #36802 (server crashes with invalid/not opened connections)Georg Richter2006-03-241-25/+13
| | | | | | | | | | | | Added status to mysqli_resource: MYSQLI_STATUS_UNKNOWN MYSQLI_STATUS_CLEARED (for future use) MYSQLI_STATUS_INITIALIZED (after mysqli_init and mysqli_stmt_init) MYSQLI_STATUS_VALID (for valid objects) removed valid flag changed MYSQLI_FETCH_RESOURCE added last parameter __check which specifies the status
* Remove no longer needed check (checked at a higher level now).Ilia Alshanetsky2006-03-011-5/+0
|
* Fixed bug #36420 (segfault when access result->num_rows after callingIlia Alshanetsky2006-02-161-0/+5
| | | | | result->close())
* 2nd attempt: implementation of 36007Georg Richter2006-01-141-0/+7
| | | | | 1st commit stopped with protocol error - never seen that before :-(
* bump year and license versionfoobar2006-01-011-3/+3
|
* fix for bug# 35759Andrey Hristov2005-12-221-4/+4
| | | | | | | (mysqli_stmt_bind_result() makes huge allocation when column empty) #this shows some leaks now, which has to be investigated but closes the #bug report.
* Allow recursive calls to __get/__set for different propertiesDmitry Stogov2005-11-151-2/+1
|
* fix TS buildAntony Dovgal2005-10-121-4/+4
|
* fix #34818 (new mysqli_stmt() and several others crash if the first ↵Antony Dovgal2005-10-101-13/+13
| | | | parameter is not a valid mysqli_link)
* fix for bug 34785:Georg Richter2005-10-081-7/+5
| | | | | | added support for parent::__construct (mysqli_statement and mysqli_resultset) fixed failed testcases when sql_mode is in effect
* fix #34450 (Segfault when calling mysqli_close() in destructor)Antony Dovgal2005-09-131-1/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* fix #33491 (crash after extending MySQLi internal class)Antony Dovgal2005-06-271-4/+13
|
* changed/fixed mysqli_warning classGeorg Richter2005-06-221-5/+8
| | | | | added prefetch support for cursors
* mysqli won't compile with Zend2 API before 2001 - in these days there wasAndrey Hristov2005-05-091-6/+2
| | | | | no Zend2
* fixed memleak in mysqli_closeGeorg Richter2005-05-051-3/+8
| | | | | fixed bug #32956 (mysqli_bind_result doesn't support MYSQL_TYPE_NULL)
* multi_query is no more globalAndrey Hristov2005-04-291-1/+0
| | | | | #thanks Sebastian!
* fixed typo in last commit :(Georg Richter2005-04-201-2/+2
|
* added support for data truncation (bind_result) for MySQL 5.0.5Georg Richter2005-04-201-1/+4
|
* cursor support for 5.0.4 (STMT_ATTR_CURSOR_TYPE changed to enum)Georg Richter2005-04-181-1/+1
|
* fix for bug #32282 (segfault in mysqli_fetch_array on 64-bit)Georg Richter2005-04-061-1/+1
|
* - Bugfix #28840 __destruct of a class that extends mysqli not calledMarcus Boerger2005-03-061-1/+1
|
* MFB: fix leak in mysqli_fetch_array()Antony Dovgal2005-01-271-0/+5
|
* - Remove double destroy (which is definitively wrong and prevents php fromMarcus Boerger2005-01-081-1/+0
| | | | | normal execution).
* forgot to remove some comments in last commit:(Georg Richter2005-01-071-4/+2
|
* Added new classes:Georg Richter2005-01-071-6/+52
| | | | | | | | | | | | | | | mysqli_driver mysqli_warning mysqli_exception mysqli_sql_exception Improved embedded server support changed testsuite to work also with embedded server Made statement and resultset classes extendable minor fixes
* added constructors for mysqli_stmt and mysqli_result classesGeorg Richter2004-12-261-4/+115
|
* fix for bug 31141Georg Richter2004-12-251-2/+3
|
* fix buffer overrun and remove debug printf() callAntony Dovgal2004-12-091-3/+0
|
* Fixed bug #30890 (testsuite)Georg Richter2004-12-041-5/+2
| | | | | Fixed bug #28817 (property problems in extended class)
* Fixed bug #30967 (properties in extended mysqli classes don't work)Georg Richter2004-12-031-4/+7
|
* changed local_infile_handler:Georg Richter2004-08-251-76/+56
| | | | | | | | mysql client lib now uses php_local_infile functions by default, which allows to use php_fopen_wrapper: e.g. LOAD DATA LOCAL INFILE 'http://foo.com/bar.csv' ... mysql_set_local_infile_handler now only supports a callback function for read.
* fixed default for mysqli_fetch_arrayGeorg Richter2004-08-151-1/+1
|
* fixed bug #29656 (segfault on result and statement properties)Georg Richter2004-08-131-5/+16
|
* fixed bug #29577 (MYSQLI_CLIENT_FOUND_ROWS undefined)Georg Richter2004-08-091-0/+1
|
* forgot to remove debug variable :( (Thx to Derick)Georg Richter2004-08-041-2/+0
|
* fixed properties when connect wasn't calledGeorg Richter2004-08-041-1/+4
|
* fixed bug #29522Georg Richter2004-08-041-0/+6
|
* fixed bug #29335Georg Richter2004-07-261-1/+1
|
* fixed bug #29311Georg Richter2004-07-231-1/+9
| | | | | added support for Cursors (MySQL 5.0.x)
* added check in config.m4 for deprecated libraryGeorg Richter2004-07-071-1/+3
| | | | | | | | | | added support for new 4.1.3-beta functions mysqli_stmt_field_count mysqli_stmt_attr_set mysqli_stmt_attr_get removed support for deprecated/old api functions fixed bug in constructor_get
* - Bugfix: #29019 Database not closingMarcus Boerger2004-07-051-1/+1
|
* added php_mysqli_construct_get to support __construct in extended classesGeorg Richter2004-06-231-0/+22
|
* ZTS fixes.Sebastian Bergmann2004-06-061-0/+6
|
* Major changes for 4.1.2-alpha/4.1.3-beta:Georg Richter2004-06-051-14/+223
| | | | | | | | | | | | - added container for mysql structure - added load data infile callback functions (currently disabled under win) Bug fixes: - fixed property changes (4.1.1 -> 4.1.2) - fixed memleak in mysqli_connect - fixed bug #28100 - fixed bug #28205 - fixed bug #28430
* - Temporary fix for bug #27869Andi Gutmans2004-04-151-2/+2
| | | | | | - George, you need to implement clone in order for "clone" and - compatibility mode to work.
* Update for new read_property APIStanislav Malyshev2004-03-211-2/+2
|
* removed if type=string: val is allocated for any type of dataGeorg Richter2004-03-181-3/+1
|