Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MFH: LOAD DATA INFILE now uses PHP's fopen wrapper | Georg Richter | 2004-09-04 | 1 | -4/+5 |
| | |||||
* | fixed compiler warnings | Georg Richter | 2004-09-02 | 1 | -1/+1 |
| | | | | | fixed bug #29283 | ||||
* | added check in config.m4 for deprecated library | Georg Richter | 2004-07-07 | 1 | -8/+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 | ||||
* | removed conditional defines for load_data_infile_handlers on windows | Georg Richter | 2004-06-06 | 1 | -2/+0 |
| | | | | | (4.1.2 windows build is fixed now on mysql.com) | ||||
* | Major changes for 4.1.2-alpha/4.1.3-beta: | Georg Richter | 2004-06-05 | 1 | -15/+30 |
| | | | | | | | | | | | | - 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 | ||||
* | fixed stmt->stmt->query which was removed in libmysql 4.1.2 | Georg Richter | 2004-03-16 | 1 | -0/+2 |
| | | | | | | added query buffer in internal stmt structure to copy string after prepare | ||||
* | added new function mysql_stmt_free_result | Georg Richter | 2004-03-10 | 1 | -0/+3 |
| | |||||
* | fixed memleaks in bind functions | Georg Richter | 2004-03-09 | 1 | -9/+12 |
| | | | | | added 4.1.2 support (renamed functions) | ||||
* | ws & cs fixes | foobar | 2004-02-26 | 1 | -1/+1 |
| | |||||
* | added MySQLI ini entries | Georg Richter | 2004-02-26 | 1 | -1/+2 |
| | | | | | added ini parameter for mysql->reconnect | ||||
* | removed experimental status | Georg Richter | 2004-01-28 | 1 | -0/+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 | ||||
* | Silence some compile warnings | foobar | 2004-01-23 | 1 | -1/+1 |
| | |||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -1/+1 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | fixed memleak and segfault when constructor call failed | Georg Richter | 2003-12-31 | 1 | -2/+8 |
| | |||||
* | ZTS fixes | Marcus Boerger | 2003-12-13 | 1 | -4/+4 |
| | |||||
* | removed profiler | Georg Richter | 2003-12-13 | 1 | -13/+38 |
| | | | | | | | | added mysqli_report - better support for errors - support for no_index_used and bad_index_used typos and prototype fixes | ||||
* | - Added multiquery support: | Georg Richter | 2003-11-22 | 1 | -4/+44 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mysqli_multi_query mysqli_more_results mysqli_next_results - added read-only properties (and removed methods) object mysql affected_rows client_flags client_version errno, error, host, host_info, info server_capabilities, server_version sqlstate, port, protocol_version, server_language thread_id, user, warning_count object result current_field, field_count, lengths, num_rows, type object stmt query, param_count, field_count, id, errno, error, sqlstate - added constructor - minor fixes, prototypes | ||||
* | added support for embedded MySQL Server | Georg Richter | 2003-10-29 | 1 | -9/+19 |
| | | | | | some prototype fixes | ||||
* | mysql_prepare_result -> mysqli_get_metadata | Georg Richter | 2003-09-25 | 1 | -1/+1 |
| | | | | | This function was renamed in libmysql (changeset 1.607 by monty) | ||||
* | Modify mysqli_fetch_object() to be able to instantiate a selected class and | Marcus Boerger | 2003-09-06 | 1 | -1/+1 |
| | | | | | pass parameters to the constructor. | ||||
* | added new functions: | Georg Richter | 2003-07-18 | 1 | -0/+2 |
| | | | | | | | | mysqli_connect_error mysqli_connect_errno which return possible errors for the last connect | ||||
* | added new function mysqli_stmt_data_seek | Georg Richter | 2003-07-15 | 1 | -0/+1 |
| | |||||
* | added support for rebind | Georg Richter | 2003-07-15 | 1 | -4/+9 |
| | |||||
* | added new function mysqli_stmt_num_rows | Georg Richter | 2003-06-22 | 1 | -0/+1 |
| | |||||
* | new functions (4.1.1): mysql_sqlstate, mysql_stmt_sqlstate | Georg Richter | 2003-06-21 | 1 | -0/+6 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -3/+3 |
| | |||||
* | profiler: | Georg Richter | 2003-03-11 | 1 | -122/+9 |
| | | | | | | | moved profiler stuff from php_mysql.h to separate include file added port communication added xml support for file and port output | ||||
* | various changes for profiler | Georg Richter | 2003-03-08 | 1 | -30/+127 |
| | |||||
* | fixed bug in macro-definition | Georg Richter | 2003-03-03 | 1 | -1/+1 |
| | |||||
* | added profiler support | Georg Richter | 2003-03-03 | 1 | -12/+55 |
| | |||||
* | Fixed bug with stmt_close (libmysql bk version 1.1477 required) | Georg Richter | 2003-02-22 | 1 | -3/+9 |
| | | | | | Fixed bug with mysql_execute and float values | ||||
* | added new function mysqli_stmt_store_result | Georg Richter | 2003-02-18 | 1 | -0/+1 |
| | |||||
* | Moved longlong conversion to a macro. | Ilia Alshanetsky | 2003-02-16 | 1 | -0/+11 |
| | |||||
* | added new function mysqli_stmt_affected_rows | Georg Richter | 2003-02-16 | 1 | -0/+1 |
| | | | | | | | added bigint support for mysqli_affected_rows fixed memleak in mysqli_prepare (stmt->is_null) fixed return type for mysqli_connect | ||||
* | Allow mysqli to be built when imap (c-client) is used. | Ilia Alshanetsky | 2003-02-14 | 1 | -0/+7 |
| | |||||
* | Missing portion of the previous patch. | Ilia Alshanetsky | 2003-02-14 | 1 | -5/+5 |
| | |||||
* | Buncha Fixes. | Ilia Alshanetsky | 2003-02-14 | 1 | -1/+1 |
| | | | | | | | | | | | * Fixed a number of memory leaks. * Fixed some php_error_docref() calls that tried to print non-existent arguments. * Fixed some signed/unsigned problems. * Fixed the MYSQLI_FETCH_RESOURCE macro so that compilers do not complain about un-initialized variables. * CS fixes. | ||||
* | added new function int mysql_get_server_version | Georg Richter | 2003-02-13 | 1 | -0/+1 |
| | | | | | this function is available since libmysql change set 1.1450 (2002-02-13) | ||||
* | removed function mysql_num_warnings (libmysql change). | Georg Richter | 2003-02-12 | 1 | -1/+0 |
| | |||||
* | initial upload | Georg Richter | 2003-02-12 | 1 | -0/+251 |