summaryrefslogtreecommitdiff
path: root/ext/mysqli
Commit message (Collapse)AuthorAgeFilesLines
* - fix int-long issue on 64bit (MFH)Andrey Hristov2005-08-061-1/+11
| | | | | | - add data checking (MFH) - add a comment
* MFH: fix #33491 (crash after extending MySQLi internal class)Antony Dovgal2005-06-271-6/+17
|
* MFH: fix leak appearing when connect failsAntony Dovgal2005-06-271-0/+1
|
* MFH: fix for bug #33263Georg Richter2005-06-172-1/+38
|
* fixed parameter parse string for mysqli_stmt_attr_setGeorg Richter2005-06-151-1/+1
|
* MFH:Georg Richter2005-05-213-8/+37
| | | | | | - fix for bug #33090 (mysqli_prepare doesn't return an error) - mysql_set_charset now works for MySQL >= 5.0.6
* MFH:Georg Richter2005-05-134-45/+34
| | | | | | fixed windows compilation bug renamed mysqli_set_character_set_name to mysqli_set_charset
* MFHAndrey Hristov2005-05-091-1/+2
|
* warn the user if he wants to prepare before fetching all previous dataAndrey Hristov2005-05-091-0/+4
| | | | | | (in case mysqli_stmt_store_result() wasn't called or not enough calls to mysqli_stmt_fetch()).
* added new function mysqli_set_character_set_nameGeorg Richter2005-05-084-0/+85
| | | | | | | This function changes also the mysql->charset structure for mysql_real_escape_string (see MySQL Bugs #8317 and #9637). This bug will probably be fixed in MySQL 5.1
* fix for 5_0. Statement constructor doesn't exist in 5_0Georg Richter2005-05-071-1/+1
|
* bail out just after detecting incorrect number of paramts to bind (MFH)Andrey Hristov2005-05-071-2/+3
|
* init these variables (MFH)Andrey Hristov2005-05-062-2/+2
|
* MFH: fix for bug #32956Georg Richter2005-05-053-7/+48
| | | | | | fixed memleak in mysql_close fixed data truncation in test 009.phpt
* missed to remove that. multi_query is no more a global.Andrey Hristov2005-04-291-1/+0
|
* MFH (fix bug #31023)Andrey Hristov2005-04-271-3/+31
| | | | | | #no test case because this has to be run with binary compiled with memory #limit enabled.
* - Fix bug 31668 (multi query fails every other time). The multi_query flagAndrey Hristov2005-04-273-8/+64
| | | | | | | was global and not per connection. - use ecalloc() instead of calloc() for memory that will be freed with efree()
* fix test to be able to run not only over Unix socket but also over TCP/IPAndrey Hristov2005-04-191-3/+3
| | | | | and not only connected to localhost.
* MFHAndrey Hristov2005-04-192-8/+53
|
* MFH: fix for cursorsGeorg Richter2005-04-181-1/+1
|
* MFH: fix for #32282 (segfault in mysqli_fetch_array on 64-bit)Georg Richter2005-04-061-1/+1
|
* MFH: Mark private functions as static.Joe Orton2005-03-301-11/+11
|
* MFH: typofixAntony Dovgal2005-03-171-1/+1
|
* - MFH Bugfix #28840Marcus Boerger2005-03-061-1/+1
|
* fix for bug #31939Georg Richter2005-02-251-1/+1
|
* MFH: Fixed bug #32081 (default socket value is not being used).Ilia Alshanetsky2005-02-241-0/+4
|
* MFH: fix for bug 29329Georg Richter2005-02-051-1/+1
|
* MFH: Fix for mysql_affected_rows and mysql_stmt_affected_rowsGeorg Richter2005-01-282-2/+63
|
* fix leak in mysqli_fetch_array() when using invalid resulttypeAntony Dovgal2005-01-271-0/+5
|
* MFH: fix for bug #31710Georg Richter2005-01-271-8/+12
|
* fix segfault when invalid field offset is passed to mysqli_fetch_field_direct()Antony Dovgal2005-01-271-0/+5
|
* This commit was manufactured by cvs2svn to create branch 'PHP_5_0'.SVN Migration2005-01-091-0/+4
|
* MFH: Added property 'id' to retrieve statement id (required by PEAR DB, to ↵Georg Richter2004-12-291-5/+21
| | | | | | | support mysqli prepared statements)
* fixed possible leak in mysqli_initGeorg Richter2004-12-272-5/+14
| | | | | fixed testcase 047.phpt
* Fix for feature request #31015: Length for field object/arrayGeorg Richter2004-12-271-0/+4
|
* MFH: Fix for bug #31141Georg Richter2004-12-251-2/+2
|
* This commit was manufactured by cvs2svn to create branch 'PHP_5_0'.SVN Migration2004-12-251-0/+28
|
* MFH: Fixed type conversion for NULL values in mysql_stmt_executeGeorg Richter2004-12-201-19/+19
|
* MFH: buffer overrun & debug printf()Antony Dovgal2004-12-091-3/+0
|
* MFH: fixed windows compile errorsGeorg Richter2004-12-061-10/+18
|
* MFH:Georg Richter2004-12-0465-143/+240
| | | | | | fix for bug #28817 (properties don't work in extended class) fix for bug #30890 (testsuite)
* MFH: Fix for bug #30967 (properties in extended mysqli classes don't work)Georg Richter2004-12-031-4/+7
|
* This commit was manufactured by cvs2svn to create branch 'PHP_5_0'.SVN Migration2004-12-031-0/+21
|
* MFHEdin Kadribasic2004-11-041-2/+2
|
* Added default multi resultset support for mysqli_connect (#30645)Georg Richter2004-11-011-1/+1
|
* MFH:Georg Richter2004-11-014-15/+31
| | | | | | | Fixed tests for empty dates (see http://bugs.mysql.com/?id=6058) 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)
* MFH: LOAD DATA INFILE now uses PHP's fopen wrapperGeorg Richter2004-09-045-115/+97
|
* fixed compiler warningsGeorg Richter2004-09-022-3/+3
| | | | | fixed bug #29283
* This commit was manufactured by cvs2svn to create branch 'PHP_5_0'.SVN Migration2004-08-261-0/+39
|