summaryrefslogtreecommitdiff
path: root/ext/mysqli
Commit message (Collapse)AuthorAgeFilesLines
...
* fix for bug 34785:Georg Richter2005-10-0818-10/+71
| | | | | | added support for parent::__construct (mysqli_statement and mysqli_resultset) fixed failed testcases when sql_mode is in effect
* MFH: fix #32081 (mysqli_real_connect(): mysqli.default_socket in php.ini has ↵Antony Dovgal2005-09-221-0/+4
| | | | no effect) for real
* fix #34450 (Segfault when calling mysqli_close() in destructor)Antony Dovgal2005-09-131-1/+3
|
* add a commentAndrey Hristov2005-08-061-0/+1
|
* add error checkingAndrey Hristov2005-08-061-1/+11
|
* fix problem on 64 bit - when asking for "l" supply long not int becauseAndrey Hristov2005-08-061-1/+1
| | | | | | | | | on 64 bit they differ and zend_parse_parameters makes a *(long*) cast which means that if the variable is int 4 bytes of the variable(s) declared before it (on the stack) will be overwritten. In this case this is the length of the query -> made 0 and mysqli_query() returns FALSE.
* - Bumber up yearfoobar2005-08-0313-13/+13
|
* Skip tests in 64bit systemsfoobar2005-07-202-2/+14
|
* add forgotten ifdefs, fix #33667 (mysqli doesn't compile)Antony Dovgal2005-07-122-0/+6
|
* changed version dependency for charset functionsGeorg Richter2005-07-122-0/+6
|
* removed charset structure. libmysql now provides a functionGeorg Richter2005-07-122-37/+16
| | | | | mysqli_get_character_set_info (Vers. 5.0.10)
* Make sure we get a WARNING and not an ERROR here :)foobar2005-07-081-6/+2
|
* add test casefoobar2005-06-271-0/+24
|
* fix #33491 (crash after extending MySQLi internal class)Antony Dovgal2005-06-271-4/+13
|
* fix couple of leaks in MySQLiAntony Dovgal2005-06-272-0/+2
|
* set_charset() is only available in mysql versions > 4.1.12foobar2005-06-271-0/+3
|
* do not pollute other directories and cleanup after testfoobar2005-06-271-3/+5
|
* fix for #33474Georg Richter2005-06-261-0/+48
|
* reverted Ilias changes - added get_warnings methodsGeorg Richter2005-06-241-2/+4
| | | | | (forgot to commit the file in my last commit)
* temporary fix to let mysqli extension build, so we can make a release.Ilia Alshanetsky2005-06-231-2/+2
|
* Slightly more reliable current path detection.Ilia Alshanetsky2005-06-221-1/+1
|
* Skip MySQLi tests if connection could not be established and not usingIlia Alshanetsky2005-06-221-0/+5
| | | | | embeded db.
* added testcase for mysqli_warning classGeorg Richter2005-06-221-0/+28
|
* added testcase for cursors (nested selects)Georg Richter2005-06-221-0/+51
|
* changed/fixed mysqli_warning classGeorg Richter2005-06-223-84/+146
| | | | | added prefetch support for cursors
* fix for bug #33263 (mysqli_real_escape doesn't work in __construct)Georg Richter2005-06-172-2/+39
|
* - Allow doing --with-mysql --with-mysqli (no mysql libs are bundled atm)foobar2005-06-071-3/+4
| | | | | - Make sure MYSQL_DIR is empty.
* fixes for #33251Wez Furlong2005-06-051-1/+1
|
* added new function mysqli_get_charsetGeorg Richter2005-06-033-0/+54
|
* - Unify the "configure --help" textsfoobar2005-05-291-2/+2
|
* enabled set_charset for MySQL Versions >= 5.0.6Georg Richter2005-05-212-1/+22
| | | | | added testcase for bug #33090
* fix for bug #33090 (mysql_prepare doesn't return error)Georg Richter2005-05-211-6/+14
|
* charsets_dir is no longer neededGeorg Richter2005-05-131-2/+0
|
* mysql_set_charset now works version undependent for MySQL 4.1.13 and aboveGeorg Richter2005-05-131-6/+4
|
* - fixed compile error under windows. Functionality for changing theGeorg Richter2005-05-134-39/+30
| | | | | | | character set was moved to libmysql (4.1 bk tree - will be merged into 5.0 within the next days). - renamed mysql_set_character_set to mysqli_set_charset
* after throwing an warning bail outAndrey Hristov2005-05-091-1/+2
|
* mysqli won't compile with Zend2 API before 2001 - in these days there wasAndrey Hristov2005-05-091-6/+2
| | | | | no Zend2
* MFBAndrey Hristov2005-05-091-0/+4
|
* - We skip tests when the extension is not loaded..in the php.inifoobar2005-05-091-4/+0
|
* revert pointless patchfoobar2005-05-091-4/+1
|
* also test shared buildsAndrey Hristov2005-05-092-2/+9
|
* Added new function mysqli_set_character_set_nameGeorg Richter2005-05-084-0/+85
|
* revert this one till we have a better way to inform the user where theAndrey Hristov2005-05-071-5/+0
| | | | | truncation has occured
* return MYSQLI_DATA_TRUNCATED if data happens to be truncatedAndrey Hristov2005-05-071-0/+5
| | | | | #the manual has to be updated
* return directlyAndrey Hristov2005-05-071-4/+1
|
* bail out when detecting incorrect number of parameters to be bound.Andrey Hristov2005-05-071-2/+3
|
* initialize values because the call to zend_parse_parameters may not do itAndrey Hristov2005-05-062-2/+2
|
* fixed memleak in mysqli_closeGeorg Richter2005-05-053-5/+41
| | | | | 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!
* e* allocation cannot fail.Ilia Alshanetsky2005-04-281-3/+1
|