summaryrefslogtreecommitdiff
path: root/ext/mysqli
Commit message (Collapse)AuthorAgeFilesLines
* fix for bug #29329Georg Richter2005-02-051-1/+1
|
* fixed a bug in mysql_affected_rows and mysql_stmt_affected_rowsGeorg Richter2005-01-282-2/+63
| | | | | | in case affected_rows function returns (my_ulonglong) -1 for errors. (Thanks to Antony Dovgal for reporting this bug)
* MFB: fix leak in mysqli_fetch_array()Antony Dovgal2005-01-271-0/+5
|
* fix for bug #31710 (return value for mysql_rollback is reverted)Georg Richter2005-01-271-8/+12
| | | | | fixed also same behaviour for mysql_commit and mysql_autocommit
* MFB: fix segfault when invalid field offset is passed to ↵Antony Dovgal2005-01-271-0/+5
| | | | mysqli_fetch_field_direct()
* Added standard emacs and vim modelinesZak Greant2005-01-166-0/+51
|
* fixed compile bug under Windows (libmysql.def currently doesn't export ↵Georg Richter2005-01-082-48/+44
| | | | | | | mysql_server_init/end). Thanks to Sebastian Bergmann for reporting
* - Fix shared buildMarcus Boerger2005-01-081-1/+1
|
* - 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
|
* ZTS fix.Sebastian Bergmann2005-01-071-1/+1
|
* Sync with config.m4.Sebastian Bergmann2005-01-071-1/+1
|
* Added new classes:Georg Richter2005-01-0725-145/+681
| | | | | | | | | | | | | | | 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 property 'id' to retrieve statement id (required by PEAR DB, to supportGeorg Richter2004-12-291-5/+21
| | | | | mysqli prepared statements)
* fixed testcase 047Georg Richter2004-12-272-4/+13
| | | | | fixed windows compile error
* Fix for feature request #31015: added length for field lengthGeorg Richter2004-12-271-2/+6
|
* added constructors for mysqli_stmt and mysqli_result classesGeorg Richter2004-12-264-4/+164
|
* fix for bug 31141Georg Richter2004-12-252-2/+31
|
* prevent type conversion during mysql_stmt_execute for NULL variablesGeorg Richter2004-12-201-18/+18
|
* fix buffer overrun and remove debug printf() callAntony Dovgal2004-12-091-3/+0
|
* fixed windows compile errors (Thx to Sebastian Bergmann)Georg Richter2004-12-061-11/+18
|
* added skipif sectionGeorg Richter2004-12-0465-0/+129
|
* Fixed bug #30890 (testsuite)Georg Richter2004-12-0466-143/+150
| | | | | Fixed bug #28817 (property problems in extended class)
* Fixed bug #30967 (properties in extended mysqli classes don't work)Georg Richter2004-12-032-4/+28
|
* MySQL is releasing client libraries that compile out of the boxEdin Kadribasic2004-11-041-2/+2
| | | | | | with mysqli extension, so there is no need for a specially compiled client library anymore.
* added multi resultset support in mysql_connectGeorg Richter2004-11-011-1/+1
|
* Fixed tests for empty dates (see http://bugs.mysql.com/?id=6058)Georg Richter2004-11-014-13/+28
| | | | | | Fixed memleak in mysqli_stmt_bind_result Fixed error handling for mysqli_multi_query
* Minor fix for mysqli_connect: checking socket_len for NULL ValuesGeorg Richter2004-10-191-0/+4
| | | | | (Thx to Paul DuBois)
* forgot to remove comment in last commitGeorg Richter2004-09-041-1/+0
|
* fixed bug #29283Georg Richter2004-09-021-1/+1
|
* test for local_infile_handlerGeorg Richter2004-08-251-0/+39
|
* changed local_infile_handler:Georg Richter2004-08-254-111/+84
| | | | | | | | 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
|
* minor fix in mysqli_prepare: copying stmt errormessag to mysql structureGeorg Richter2004-08-121-0/+6
|
* 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 in mysql->client_versionGeorg Richter2004-07-261-1/+10
| | | | | added mysql->client_info property
* fixed bug #29311Georg Richter2004-07-233-1/+54
| | | | | added support for Cursors (MySQL 5.0.x)
* changed warning (bug #29298) for outdated client libraryGeorg Richter2004-07-221-1/+1
|
* This should fix binary safety for bound results or may coogle strike me down.Sara Golemon2004-07-221-1/+1
|
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-191-2/+2
| | | | | | | | | | | | | | | used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow.
* fixed paraenthesis warning in mysql_stmt_attr_set/getGeorg Richter2004-07-171-2/+2
|
* prototype fixesGeorg Richter2004-07-131-3/+3
|
* changed mysqli_stmt_reset (returns now bool instead of void)Georg Richter2004-07-131-4/+5
|
* added check in config.m4 for deprecated libraryGeorg Richter2004-07-077-77/+109
| | | | | | | | | | 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
|