summaryrefslogtreecommitdiff
path: root/ext/mysqli
Commit message (Collapse)AuthorAgeFilesLines
...
* changed return value of mysql_fetchGeorg Richter2004-02-181-1/+1
| | | | | - instead of MYSQL_NO_DATA mysql_fetch will now return NULL
* changed outputGeorg Richter2004-02-171-3/+2
|
* fixed some testsGeorg Richter2004-02-164-7/+24
| | | | | added skip section for prepared statements when using SHOW command
* fixed several binding problemsGeorg Richter2004-02-151-1/+12
|
* 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-112-3/+0
| | | | | Thx Andi!
* changed first param in mysqli_bind_paramGeorg Richter2004-02-1114-32/+18
|
* changed first parameter in mysqli_bind_param from array to stringGeorg Richter2004-02-112-25/+16
| | | | | (as discussed on berlin db meeting)
* fixed cast warningGeorg Richter2004-02-071-1/+1
|
* - Update with new destructor codeZeev Suraski2004-02-041-3/+3
|
* 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.
* added nuw_rows property for statement objectGeorg Richter2004-01-301-0/+3
|
* removed experimental statusGeorg Richter2004-01-288-19/+29
| | | | | | | | 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-272-3/+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-262-26/+8
| | | | | removed mysqli_read_query_result (will be removed in libmysql)
* more prototype fixes.Georg Richter2004-01-262-10/+8
| | | | | 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
|
* Silence some compile warningsfoobar2004-01-231-1/+1
|
* - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5foobar2004-01-171-2/+2
|
* Proto fixMarcus Boerger2004-01-121-1/+1
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-084-4/+4
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-085-5/+5
|
* fixed bug(s) in macro call for statement propertiesGeorg Richter2004-01-011-14/+14
|
* Added Macro for longlong valuesGeorg Richter2004-01-011-33/+24
| | | | | added property stmt->affected_rows
* emalloc() -> safe_emalloc()Ilia Alshanetsky2003-12-311-1/+1
|
* fixed memleak and segfault when constructor call failedGeorg Richter2003-12-314-13/+31
|
* fixed a bug in mysqli_num_rows (added support for longlong values)Georg Richter2003-12-301-4/+3
|
* fixed a bug in insert_id propertyGeorg Richter2003-12-301-2/+3
|
* updated todo list (removed finished tasks)Georg Richter2003-12-291-11/+0
|
* fixed prototype for mysqli_bind_resultGeorg Richter2003-12-281-1/+1
|
* fixed bug in properties for longlong valuesGeorg Richter2003-12-281-2/+49
|
* beautifying :)Georg Richter2003-12-221-3/+2
|
* fixed bug #26680Georg Richter2003-12-221-0/+4
|
* added propertiesGeorg Richter2003-12-163-1/+9
| | | | | | | - insert_id - server_status fixed bug in mysqli_execute (report func)
* minor fixes for embeddedGeorg Richter2003-12-132-8/+7
|
* ZTS fixesMarcus Boerger2003-12-134-11/+11
|
* removed old profiler stuff for embedded serverGeorg Richter2003-12-131-2/+0
|
* removed profiler stuffGeorg Richter2003-12-134-875/+0
|
* removed profilerGeorg Richter2003-12-138-374/+327
| | | | | | | | 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
|
* wsfoobar2003-12-081-1/+1
|
* Fix logicfoobar2003-12-071-14/+8
|
* prototype fix for mysqli_ssl_setGeorg Richter2003-11-301-1/+1
|
* added/fixed write propertyGeorg Richter2003-11-241-6/+37
|
* fixed mem leak in constructorGeorg Richter2003-11-231-0/+4
|
* - Added multiquery support:Georg Richter2003-11-227-33/+437
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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