summaryrefslogtreecommitdiff
path: root/ext/mysqli
Commit message (Collapse)AuthorAgeFilesLines
* MFH - Fixing tests - messages/warnings can vary by versionUlf Wendel2009-05-292-2/+2
|
* MFH - Updating test to reflect API changes.Ulf Wendel2009-05-291-9/+13
|
* MFH - Skip test for libmysql. The MySQL C-API does not support it, mysqlnd ↵Ulf Wendel2009-05-291-2/+8
| | | | does...
* MFH:Add support for mysql_stmt_store_result() from libmysql 6.0.8+ and 5.4.xAndrey Hristov2009-05-293-1/+13
|
* MFH - 1) The wording of a message can differ by version and by libmysql vs. ↵Ulf Wendel2009-05-292-2/+2
| | | | mysqlnd. 2) %i is better than %s
* MFH - Behaviour is undefined with libmysql, accept whatever libmysql may ↵Ulf Wendel2009-05-291-1/+5
| | | | return. With mysqlnd you get the defined value of -1 to indicate 'no value'.
* MFH - 'Fixing' test to reflect a libmysql vs. mysqlnd difference. With ↵Ulf Wendel2009-05-291-2/+7
| | | | libmysql it is not defined what mysql_stmt_store_result() shall return when one tries to store the (non-existing) result set of a failed SQL statement, http://dev.mysql.com/doc/refman/6.0/en/mysql-stmt-store-result.html . mysqlnd will detect the SQL failure and return false. libmysql will return true. If you want libmysql to change, file a bug report at MySQL... I don't think there is a good way to work around this in the extension itself.
* MFH - Another detail where mysqlnd is superior than libmysql. The ↵Ulf Wendel2009-05-291-6/+15
| | | | mysql_info() from libmysql does not support SELECT: http://dev.mysql.com/doc/refman/6.0/en/mysql-info.html . mysqlnd does support it. Libmysql feature request filed http://bugs.mysql.com/bug.php?id=45189
* MFH: Weaker test - libmysql/server error messages can differ by versionUlf Wendel2009-05-291-6/+6
|
* MFH - Weaker test: functions are only available if HAVE_EMBEDDED_MYSQLI is ↵Ulf Wendel2009-05-291-5/+6
| | | | set. There is probably no proper way to check this condition in the user land.
* MFH - Skip when using libmysql. Likely a regression bug - ↵Ulf Wendel2009-05-291-7/+8
| | | | http://bugs.mysql.com/bug.php?id=45184
* MFH:The option has changed the name, hence we change the testAndrey Hristov2009-05-292-4/+4
|
* MFH - Asynchronous queries are mysqlnd only. If you want them with libmysql, ↵Ulf Wendel2009-05-281-0/+3
| | | | ping JimW who works on Connector/C.
* MFH - Andrey needs to have a look at this one. The bug report itself is ↵Ulf Wendel2009-05-281-0/+31
| | | | bogus. However, the bug report shows a result set and that is wrong.
* MFH:Andrey Hristov2009-05-281-1/+1
| | | | | Forgot to commit this one, of the ANSI_QUOTES fame
* MFH:Fix again the tests for ANSI_QUOTESAndrey Hristov2009-05-286-11/+11
|
* MFH:Fix a valgrind warning as well as more trace log informationAndrey Hristov2009-05-282-2/+3
|
* MFH - I had accidently removed Andrey's path to work with ANSI QUOTES... ↵Ulf Wendel2009-05-2828-64/+67
| | | | fixing what I broke (part 1)
* MFH - what a wonderful word. After the change in HEAD its easy to do a ↵Ulf Wendel2009-05-28132-4197/+1531
| | | | merge. The merge removes all UEXPECTF sections from the old days. Yes, there have been UEXPECTFs in 5_3. I hope PHP 6 won't change again over time... :-)
* MFH:Fix a test, UNSIGNED is expectedAndrey Hristov2009-05-281-2/+2
|
* MFH: Fix failures when the server is running with ANSI_QUOTESAndrey Hristov2009-05-286-12/+12
|
* MFH:Andrey Hristov2009-05-271-1/+1
| | | | | Less warnings by usage of proper modifier
* MFH:because we use int64_t we need corresponding printf modifiers. the typeAndrey Hristov2009-05-271-4/+6
| | | | | | can be different on 32 and 64 bit, thus we can't use ld and lld but C helps us with inttypes.h and PRId64 and PRIu64 modifiers (without the %)
* MFH: Fix tests when the server is running with ANSI_QUOTESAndrey Hristov2009-05-2726-81/+81
|
* Crappy anonymous MySQL user account... trying to make the test more portable.Ulf Wendel2009-05-271-8/+28
|
* The test is bogus as long as there is no (proper) way to detect from the PHP ↵Ulf Wendel2009-05-271-1/+3
| | | | userland if persistent connections do a change user or not. If they do is controlled by define at the moment.
* Testing a little further into the direction of a possible mysqlnd vs. ↵Ulf Wendel2009-05-271-15/+28
| | | | libmysql compatibility break or a libmysql bug. It is not clearly stated in the MySQL C-API documentation what excactly happens on stmt_reset().
* Trying to get test failures down by fixing tests.Ulf Wendel2009-05-274-12/+13
|
* MFH: Revert in regard of my_ulonglong which should be used instead of longAndrey Hristov2009-05-271-20/+19
| | | | | which can be anything.
* Fixed compiler warning again, uint8_t is only available with mysqlnd. This ↵Kalle Sommer Nielsen2009-05-231-0/+4
| | | | is not affecting HEAD
* Fixed buildIlia Alshanetsky2009-05-201-1/+1
|
* MFH: Fix compiler warnings in ext/mysql, ext/mysqli and ext/pdo_mysqlKalle Sommer Nielsen2009-05-202-11/+11
|
* MFH: Fix mysqli pconnects to properly reset connection status by defaultJohannes Schlüter2009-01-271-2/+1
|
* MFH: export mysql_refreshJohannes Schlüter2009-01-227-12/+57
| | | | | | | | | [DOC] This makes mysql_refresh() as described in http://dev.mysql.com/doc/refman/6.0/en/mysql-refresh.html available as mysqli_Refresh() and mysqli->refresh() MYSQLI_REFRESH_BACKUP_LOG is only available when linking libmysql 6.0 or mysqlnd
* MFH: Fix #47050 mysqli_poll() modifies improper variablesJohannes Schlüter2009-01-122-1/+39
|
* MFH Fix #45940 MySQLI OO does not populate connect_error property on failedJohannes Schlüter2009-01-124-15/+21
| | | | | connect
* MFH: Fixed bug #46653Johannes Schlüter2009-01-091-1/+1
|
* MFH: Proper ctor usage (Fix #46044)Johannes Schlüter2009-01-076-46/+10
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-3114-14/+14
|
* Fixed bug #46887 (Invalid calls to php_error_docref())Ilia Alshanetsky2008-12-181-1/+1
| | | | | # Patch by oeriksson at mandriva dot com and crrodriguez at opensuse dot org
* MFH: Change to zend_parse_parametersJohannes Schlüter2008-11-281-17/+16
|
* Fixed bug #46409 (__invoke method called outside of object context when ↵Dmitry Stogov2008-11-271-2/+2
| | | | using array_map)
* MFH: Fix #46241 (stacked error_handlers, error_handling in general)Etienne Kneuss2008-11-191-1/+1
|
* MFH:Andrey Hristov2008-11-1814-14/+999
| | | | | | Asynchronous queries for mysqli, when mysqlnd is enabled. Includes 4 tests for mysqli_poll
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-3/+0
|
* MFH: Remove unneeded castAndrey Hristov2008-11-101-1/+1
|
* MFH: Fixed compiler warningsIlia Alshanetsky2008-11-101-11/+11
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+3
|
* MFH: Fix warnings in sprintfAndrey Hristov2008-10-311-18/+18
|
* Fix that instance too - mysql_get_client_version() returns unsigned longAndrey Hristov2008-10-281-1/+1
|