summaryrefslogtreecommitdiff
path: root/ext/mysqli/php_mysqli.h
Commit message (Collapse)AuthorAgeFilesLines
* MFH:Georg Richter2005-05-211-1/+1
| | | | | | - 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-131-10/+5
| | | | | | fixed windows compilation bug renamed mysqli_set_character_set_name to mysqli_set_charset
* added new function mysqli_set_character_set_nameGeorg Richter2005-05-081-0/+12
| | | | | | | 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 bug 31668 (multi query fails every other time). The multi_query flagAndrey Hristov2005-04-271-5/+5
| | | | | | | was global and not per connection. - use ecalloc() instead of calloc() for memory that will be freed with efree()
* MFH: LOAD DATA INFILE now uses PHP's fopen wrapperGeorg Richter2004-09-041-4/+5
|
* fixed compiler warningsGeorg Richter2004-09-021-1/+1
| | | | | fixed bug #29283
* added check in config.m4 for deprecated libraryGeorg Richter2004-07-071-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 windowsGeorg Richter2004-06-061-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 Richter2004-06-051-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.2Georg Richter2004-03-161-0/+2
| | | | | | added query buffer in internal stmt structure to copy string after prepare
* added new function mysql_stmt_free_resultGeorg Richter2004-03-101-0/+3
|
* fixed memleaks in bind functionsGeorg Richter2004-03-091-9/+12
| | | | | added 4.1.2 support (renamed functions)
* ws & cs fixesfoobar2004-02-261-1/+1
|
* added MySQLI ini entriesGeorg Richter2004-02-261-1/+2
| | | | | added ini parameter for mysql->reconnect
* removed experimental statusGeorg Richter2004-01-281-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 warningsfoobar2004-01-231-1/+1
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-1/+1
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* fixed memleak and segfault when constructor call failedGeorg Richter2003-12-311-2/+8
|
* ZTS fixesMarcus Boerger2003-12-131-4/+4
|
* removed profilerGeorg Richter2003-12-131-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 Richter2003-11-221-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 ServerGeorg Richter2003-10-291-9/+19
| | | | | some prototype fixes
* mysql_prepare_result -> mysqli_get_metadataGeorg Richter2003-09-251-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 andMarcus Boerger2003-09-061-1/+1
| | | | | pass parameters to the constructor.
* added new functions:Georg Richter2003-07-181-0/+2
| | | | | | | | mysqli_connect_error mysqli_connect_errno which return possible errors for the last connect
* added new function mysqli_stmt_data_seekGeorg Richter2003-07-151-0/+1
|
* added support for rebindGeorg Richter2003-07-151-4/+9
|
* added new function mysqli_stmt_num_rowsGeorg Richter2003-06-221-0/+1
|
* new functions (4.1.1): mysql_sqlstate, mysql_stmt_sqlstateGeorg Richter2003-06-211-0/+6
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* profiler:Georg Richter2003-03-111-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 profilerGeorg Richter2003-03-081-30/+127
|
* fixed bug in macro-definitionGeorg Richter2003-03-031-1/+1
|
* added profiler supportGeorg Richter2003-03-031-12/+55
|
* Fixed bug with stmt_close (libmysql bk version 1.1477 required)Georg Richter2003-02-221-3/+9
| | | | | Fixed bug with mysql_execute and float values
* added new function mysqli_stmt_store_resultGeorg Richter2003-02-181-0/+1
|
* Moved longlong conversion to a macro.Ilia Alshanetsky2003-02-161-0/+11
|
* added new function mysqli_stmt_affected_rowsGeorg Richter2003-02-161-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 Alshanetsky2003-02-141-0/+7
|
* Missing portion of the previous patch.Ilia Alshanetsky2003-02-141-5/+5
|
* Buncha Fixes.Ilia Alshanetsky2003-02-141-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_versionGeorg Richter2003-02-131-0/+1
| | | | | this function is available since libmysql change set 1.1450 (2002-02-13)
* removed function mysql_num_warnings (libmysql change).Georg Richter2003-02-121-1/+0
|
* initial uploadGeorg Richter2003-02-121-0/+251