summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli.c
Commit message (Collapse)AuthorAgeFilesLines
...
* fixed stmt->stmt->query which was removed in libmysql 4.1.2Georg Richter2004-03-161-0/+6
| | | | | | added query buffer in internal stmt structure to copy string after prepare
* Missing buffer->val changeMarcus Boerger2004-03-091-1/+1
|
* added MySQLI ini entriesGeorg Richter2004-02-261-0/+2
| | | | | added ini parameter for mysql->reconnect
* Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0.Zeev Suraski2004-02-151-1/+1
| | | | | | | | | | Note: You should not be using ZVAL_DELREF() in day to day usage. Instead, you should use zval_ptr_dtor(). Use ZVAL_DELREF() only if you're messing with the refcount directly and know what you're doing. Note #2: For clarity, if you want to initialize a new zval with a refcount of 0, it's best to do that directly, instead of using ZVAL_DELREF after allocating the zval...
* zend_default_classes.h -> zend_exceptions.hZeev Suraski2004-02-121-1/+1
|
* removed printfs :)Georg Richter2004-02-111-1/+0
| | | | | Thx Andi!
* changed first parameter in mysqli_bind_param from array to stringGeorg Richter2004-02-111-6/+1
| | | | | (as discussed on berlin db meeting)
* fixed cast warningGeorg Richter2004-02-071-1/+1
|
* - Update with new destructor codeZeev Suraski2004-02-041-3/+3
|
* removed experimental statusGeorg Richter2004-01-281-4/+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
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-1/+1
|
* emalloc() -> safe_emalloc()Ilia Alshanetsky2003-12-311-1/+1
|
* fixed memleak and segfault when constructor call failedGeorg Richter2003-12-311-4/+10
|
* removed profilerGeorg Richter2003-12-131-36/+16
| | | | | | | | added mysqli_report - better support for errors - support for no_index_used and bad_index_used typos and prototype fixes
* freeing result and stmt properties in MSHUTDOWNGeorg Richter2003-12-101-3/+2
|
* added/fixed write propertyGeorg Richter2003-11-241-6/+37
|
* - Added multiquery support:Georg Richter2003-11-221-3/+128
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* 10-18% optimization of fetch_array(), when both number & string indexes areIlia Alshanetsky2003-11-071-12/+13
| | | | | | | created. # Do we want to MFH the change (for ext/mysql) into 4.3.X?
* Ensure that INI entries are unregistered on shutdownZak Greant2003-10-301-2/+0
|
* Modify mysqli_fetch_object() to be able to instantiate a selected class andMarcus Boerger2003-09-061-10/+96
| | | | | pass parameters to the constructor.
* added support for rebindGeorg Richter2003-07-151-18/+38
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* MYSQL_NEED_DATA isn't defined anymore in mysql.hGeorg Richter2003-05-211-1/+0
|
* Add missing initializationMarcus Boerger2003-03-211-0/+1
|
* profiler:Georg Richter2003-03-111-5/+22
| | | | | | | 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-21/+32
|
* Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings.foobar2003-03-071-2/+2
| | | | | | # Intentionally left out any 'alias' for it, this way 3rd party extension # maintainers will really NOTICE the change.
* added profiler supportGeorg Richter2003-03-031-0/+1
|
* Fixed bug with stmt_close (libmysql bk version 1.1477 required)Georg Richter2003-02-221-10/+9
| | | | | Fixed bug with mysql_execute and float values
* removed duplicate codeGeorg Richter2003-02-181-7/+0
|
* fixed some leaks when mysql_close will be called before all stmts are freed.Georg Richter2003-02-181-4/+12
|
* Fixed compile warnings.Ilia Alshanetsky2003-02-141-1/+2
|
* Missing portion of the previous patch.Ilia Alshanetsky2003-02-141-23/+34
|
* fixed a bug in prepare/bindGeorg Richter2003-02-141-1/+1
|
* initial uploadGeorg Richter2003-02-121-0/+409