| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix #33491 (crash after extending MySQLi internal class) | Antony Dovgal | 2005-06-27 | 1 | -4/+13 |
| | | |||||
| * | changed/fixed mysqli_warning class | Georg Richter | 2005-06-22 | 1 | -5/+8 |
| | | | | | | added prefetch support for cursors | ||||
| * | mysqli won't compile with Zend2 API before 2001 - in these days there was | Andrey Hristov | 2005-05-09 | 1 | -6/+2 |
| | | | | | | no Zend2 | ||||
| * | fixed memleak in mysqli_close | Georg Richter | 2005-05-05 | 1 | -3/+8 |
| | | | | | | fixed bug #32956 (mysqli_bind_result doesn't support MYSQL_TYPE_NULL) | ||||
| * | multi_query is no more global | Andrey Hristov | 2005-04-29 | 1 | -1/+0 |
| | | | | | | #thanks Sebastian! | ||||
| * | fixed typo in last commit :( | Georg Richter | 2005-04-20 | 1 | -2/+2 |
| | | |||||
| * | added support for data truncation (bind_result) for MySQL 5.0.5 | Georg Richter | 2005-04-20 | 1 | -1/+4 |
| | | |||||
| * | cursor support for 5.0.4 (STMT_ATTR_CURSOR_TYPE changed to enum) | Georg Richter | 2005-04-18 | 1 | -1/+1 |
| | | |||||
| * | fix for bug #32282 (segfault in mysqli_fetch_array on 64-bit) | Georg Richter | 2005-04-06 | 1 | -1/+1 |
| | | |||||
| * | - Bugfix #28840 __destruct of a class that extends mysqli not called | Marcus Boerger | 2005-03-06 | 1 | -1/+1 |
| | | |||||
| * | MFB: fix leak in mysqli_fetch_array() | Antony Dovgal | 2005-01-27 | 1 | -0/+5 |
| | | |||||
| * | - Remove double destroy (which is definitively wrong and prevents php from | Marcus Boerger | 2005-01-08 | 1 | -1/+0 |
| | | | | | | normal execution). | ||||
| * | forgot to remove some comments in last commit:( | Georg Richter | 2005-01-07 | 1 | -4/+2 |
| | | |||||
| * | Added new classes: | Georg Richter | 2005-01-07 | 1 | -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 classes | Georg Richter | 2004-12-26 | 1 | -4/+115 |
| | | |||||
| * | fix for bug 31141 | Georg Richter | 2004-12-25 | 1 | -2/+3 |
| | | |||||
| * | fix buffer overrun and remove debug printf() call | Antony Dovgal | 2004-12-09 | 1 | -3/+0 |
| | | |||||
| * | Fixed bug #30890 (testsuite) | Georg Richter | 2004-12-04 | 1 | -5/+2 |
| | | | | | | Fixed bug #28817 (property problems in extended class) | ||||
| * | Fixed bug #30967 (properties in extended mysqli classes don't work) | Georg Richter | 2004-12-03 | 1 | -4/+7 |
| | | |||||
| * | changed local_infile_handler: | Georg Richter | 2004-08-25 | 1 | -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_array | Georg Richter | 2004-08-15 | 1 | -1/+1 |
| | | |||||
| * | fixed bug #29656 (segfault on result and statement properties) | Georg Richter | 2004-08-13 | 1 | -5/+16 |
| | | |||||
| * | fixed bug #29577 (MYSQLI_CLIENT_FOUND_ROWS undefined) | Georg Richter | 2004-08-09 | 1 | -0/+1 |
| | | |||||
| * | forgot to remove debug variable :( (Thx to Derick) | Georg Richter | 2004-08-04 | 1 | -2/+0 |
| | | |||||
| * | fixed properties when connect wasn't called | Georg Richter | 2004-08-04 | 1 | -1/+4 |
| | | |||||
| * | fixed bug #29522 | Georg Richter | 2004-08-04 | 1 | -0/+6 |
| | | |||||
| * | fixed bug #29335 | Georg Richter | 2004-07-26 | 1 | -1/+1 |
| | | |||||
| * | fixed bug #29311 | Georg Richter | 2004-07-23 | 1 | -1/+9 |
| | | | | | | added support for Cursors (MySQL 5.0.x) | ||||
| * | added check in config.m4 for deprecated library | Georg Richter | 2004-07-07 | 1 | -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 closing | Marcus Boerger | 2004-07-05 | 1 | -1/+1 |
| | | |||||
| * | added php_mysqli_construct_get to support __construct in extended classes | Georg Richter | 2004-06-23 | 1 | -0/+22 |
| | | |||||
| * | ZTS fixes. | Sebastian Bergmann | 2004-06-06 | 1 | -0/+6 |
| | | |||||
| * | Major changes for 4.1.2-alpha/4.1.3-beta: | Georg Richter | 2004-06-05 | 1 | -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 #27869 | Andi Gutmans | 2004-04-15 | 1 | -2/+2 |
| | | | | | | | - George, you need to implement clone in order for "clone" and - compatibility mode to work. | ||||
| * | Update for new read_property API | Stanislav Malyshev | 2004-03-21 | 1 | -2/+2 |
| | | |||||
| * | removed if type=string: val is allocated for any type of data | Georg Richter | 2004-03-18 | 1 | -3/+1 |
| | | |||||
| * | fixed stmt->stmt->query which was removed in libmysql 4.1.2 | Georg Richter | 2004-03-16 | 1 | -0/+6 |
| | | | | | | | added query buffer in internal stmt structure to copy string after prepare | ||||
| * | Missing buffer->val change | Marcus Boerger | 2004-03-09 | 1 | -1/+1 |
| | | |||||
| * | added MySQLI ini entries | Georg Richter | 2004-02-26 | 1 | -0/+2 |
| | | | | | | added ini parameter for mysql->reconnect | ||||
| * | Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0. | Zeev Suraski | 2004-02-15 | 1 | -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.h | Zeev Suraski | 2004-02-12 | 1 | -1/+1 |
| | | |||||
| * | removed printfs :) | Georg Richter | 2004-02-11 | 1 | -1/+0 |
| | | | | | | Thx Andi! | ||||
| * | changed first parameter in mysqli_bind_param from array to string | Georg Richter | 2004-02-11 | 1 | -6/+1 |
| | | | | | | (as discussed on berlin db meeting) | ||||
| * | fixed cast warning | Georg Richter | 2004-02-07 | 1 | -1/+1 |
| | | |||||
| * | - Update with new destructor code | Zeev Suraski | 2004-02-04 | 1 | -3/+3 |
| | | |||||
| * | removed experimental status | Georg Richter | 2004-01-28 | 1 | -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 5 | Andi Gutmans | 2004-01-08 | 1 | -1/+1 |
| | | |||||
| * | emalloc() -> safe_emalloc() | Ilia Alshanetsky | 2003-12-31 | 1 | -1/+1 |
| | | |||||
| * | fixed memleak and segfault when constructor call failed | Georg Richter | 2003-12-31 | 1 | -4/+10 |
| | | |||||
| * | removed profiler | Georg Richter | 2003-12-13 | 1 | -36/+16 |
| | | | | | | | | | added mysqli_report - better support for errors - support for no_index_used and bad_index_used typos and prototype fixes | ||||
