summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* fixed stmt->stmt->query which was removed in libmysql 4.1.2Georg Richter2004-03-161-0/+6
| | | | | | added query buffer in internal stmt structure to copy string after prepare
* Missing buffer->val changeMarcus Boerger2004-03-091-1/+1
|
* added MySQLI ini entriesGeorg Richter2004-02-261-0/+2
| | | | | added ini parameter for mysql->reconnect
* Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0.Zeev Suraski2004-02-151-1/+1
| | | | | | | | | | Note: You should not be using ZVAL_DELREF() in day to day usage. Instead, you should use zval_ptr_dtor(). Use ZVAL_DELREF() only if you're messing with the refcount directly and know what you're doing. Note #2: For clarity, if you want to initialize a new zval with a refcount of 0, it's best to do that directly, instead of using ZVAL_DELREF after allocating the zval...
* zend_default_classes.h -> zend_exceptions.hZeev Suraski2004-02-121-1/+1
|
* removed printfs :)Georg Richter2004-02-111-1/+0
| | | | | Thx Andi!
* changed first parameter in mysqli_bind_param from array to stringGeorg Richter2004-02-111-6/+1
| | | | | (as discussed on berlin db meeting)
* fixed cast warningGeorg Richter2004-02-071-1/+1
|
* - Update with new destructor codeZeev Suraski2004-02-041-3/+3
|
* removed experimental statusGeorg Richter2004-01-281-4/+2
| | | | | | | | fixed bug in mysqli_data_seek (thx to Andrey "Effendi" Hristov) various prototype fixes moved some methods to properties which are part of mysql struct added function mysqli_get_server_version
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-1/+1
|
* emalloc() -> safe_emalloc()Ilia Alshanetsky2003-12-311-1/+1
|
* fixed memleak and segfault when constructor call failedGeorg Richter2003-12-311-4/+10
|
* removed profilerGeorg Richter2003-12-131-36/+16
| | | | | | | | added mysqli_report - better support for errors - support for no_index_used and bad_index_used typos and prototype fixes