summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_api.c
Commit message (Collapse)AuthorAgeFilesLines
* fixed problems in mysql_stmt_init (missing alloc from stmt)Georg Richter2004-03-181-0/+3
|
* fixed stmt->stmt->query which was removed in libmysql 4.1.2Georg Richter2004-03-161-1/+22
| | | | | | added query buffer in internal stmt structure to copy string after prepare
* added new function mysql_stmt_free_resultGeorg Richter2004-03-101-0/+21
|
* fixed memleaks in bind functionsGeorg Richter2004-03-091-60/+151
| | | | | added 4.1.2 support (renamed functions)
* prototype fix for mysqli_pingGeorg Richter2004-02-261-2/+5
|
* added MySQLI ini entriesGeorg Richter2004-02-261-1/+1
| | | | | added ini parameter for mysql->reconnect
* removed blocking calls to mysql_set_server_option (MYSQLI_DISABLE_MQ)Georg Richter2004-02-261-3/+0
| | | | | | added mysqli_multi_query to function table changed stmt->affected_rows property (http://bugs.mysql.com/?id=2247) for 4.1.2
* fixed report messageGeorg Richter2004-02-231-2/+4
| | | | | Disabled reconnect option
* Moved functions for replication support in to file mysqli_repl.cGeorg Richter2004-02-201-182/+0
| | | | | | | - these functions are marked as experimental now in documentation not sure if we will replace or extend them with NDB support in April
* changed return value of mysql_fetchGeorg Richter2004-02-181-1/+1
| | | | | - instead of MYSQL_NO_DATA mysql_fetch will now return NULL
* fixed several binding problemsGeorg Richter2004-02-151-1/+12
|
* removed printfs :)Georg Richter2004-02-111-2/+0
| | | | | Thx Andi!
* changed first parameter in mysqli_bind_param from array to stringGeorg Richter2004-02-111-19/+15
| | | | | (as discussed on berlin db meeting)
* Corrected binding:Georg Richter2004-01-311-1/+1
| | | | | | if column has type DECIMAL it will converted to string now. Thanks to Brian Aker for pointing this out.
* removed experimental statusGeorg Richter2004-01-281-3/+11
| | | | | | | | 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
* changed prototype mysql_dataseek from void to boolGeorg Richter2004-01-271-3/+7
| | | | | add check for specified offset
* prototype fixesGeorg Richter2004-01-271-2/+2
| | | | | removed method field_tell (which is already property current_field)
* fixed compiler warning (thx to Marcus Boerger)Georg Richter2004-01-261-1/+1
|
* proto fixesGeorg Richter2004-01-261-24/+8
| | | | | removed mysqli_read_query_result (will be removed in libmysql)
* more prototype fixes.Georg Richter2004-01-261-7/+5
| | | | | fixed a bug in mysqli_send_long_data
* prototype fix for mysqli_fetchGeorg Richter2004-01-251-4/+14
|
* prototype fixesGeorg Richter2004-01-241-2/+2
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-1/+1
|
* fixed memleak and segfault when constructor call failedGeorg Richter2003-12-311-6/+10
|
* fixed a bug in mysqli_num_rows (added support for longlong values)Georg Richter2003-12-301-4/+3
|
* fixed prototype for mysqli_bind_resultGeorg Richter2003-12-281-1/+1
|
* added propertiesGeorg Richter2003-12-161-0/+4
| | | | | | | - insert_id - server_status fixed bug in mysqli_execute (report func)
* minor fixes for embeddedGeorg Richter2003-12-131-7/+2
|
* ZTS fixesMarcus Boerger2003-12-131-3/+3
|
* removed profilerGeorg Richter2003-12-131-251/+118
| | | | | | | | added mysqli_report - better support for errors - support for no_index_used and bad_index_used typos and prototype fixes
* prototype fix for mysqli_ssl_setGeorg Richter2003-11-301-1/+1
|
* - Added multiquery support:Georg Richter2003-11-221-2/+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
* proto fixHartmut Holzgraefe2003-11-191-1/+1
|
* changed return value from long to boolean for mysql_executeGeorg Richter2003-10-301-2/+5
|
* added support for embedded MySQL ServerGeorg Richter2003-10-291-4/+39
| | | | | some prototype fixes
* mysql_prepare_result -> mysqli_get_metadataGeorg Richter2003-09-251-3/+3
| | | | | This function was renamed in libmysql (changeset 1.607 by monty)
* proto fixHartmut Holzgraefe2003-09-161-1/+1
|
* Modify mysqli_fetch_object() to be able to instantiate a selected class andMarcus Boerger2003-09-061-1/+1
| | | | | pass parameters to the constructor.
* Revert commit by accident, sorryMarcus Boerger2003-08-311-2/+2
|
* Revisited: Replace the non portable code by spprintfMarcus Boerger2003-08-311-2/+2
|
* format string fixesAndrey Hristov2003-08-281-1/+1
|
* Fix parameter specMarcus Boerger2003-08-211-1/+1
|
* emalloc -> safe_emallocIlia Alshanetsky2003-08-121-5/+5
|
* ws fixfoobar2003-07-281-13/+13
|
* added new functions:Georg Richter2003-07-181-11/+13
| | | | | | | | mysqli_connect_error mysqli_connect_errno which return possible errors for the last connect
* added new function mysqli_stmt_data_seekGeorg Richter2003-07-151-2/+23
|
* added support for rebindGeorg Richter2003-07-151-92/+77
|
* added BYREF_FORCE for bind parameters in msqli_bind_param and mysqli_bind_resultGeorg Richter2003-06-281-61/+49
| | | | | | | changed function parameters in mysqli_bind_param from (object statement, mixed var1, long type1, ...) to (object statement, array tyoes, mixed var1, mixed var2, ...)
* added new function mysqli_stmt_num_rowsGeorg Richter2003-06-221-0/+19
|
* fixed prototypesGeorg Richter2003-06-221-65/+65
|