| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|
|
|
|
|
|
|
| |
mysql client lib now uses php_local_infile functions by default, which allows
to use php_fopen_wrapper: e.g. LOAD DATA LOCAL INFILE 'http://foo.com/bar.csv' ...
mysql_set_local_infile_handler now only supports a callback function for read.
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
(4.1.2 windows build is fixed now on mysql.com)
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
| |
added query buffer in internal stmt structure to copy string
after prepare
|
| |
|
|
|
|
|
| |
added 4.1.2 support (renamed functions)
|
| |
|
|
|
|
|
| |
added ini parameter for mysql->reconnect
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
| |
# Should the LICENSE and Zend/LICENSE dates be updated too?
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
added mysqli_report
- better support for errors
- support for no_index_used and bad_index_used
typos and prototype fixes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
some prototype fixes
|
|
|
|
|
| |
This function was renamed in libmysql (changeset 1.607 by monty)
|
|
|
|
|
| |
pass parameters to the constructor.
|
|
|
|
|
|
|
|
| |
mysqli_connect_error
mysqli_connect_errno
which return possible errors for the last connect
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
moved profiler stuff from php_mysql.h to separate include file
added port communication
added xml support for file and port output
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Fixed bug with mysql_execute and float values
|
| |
|
| |
|
|
|
|
|
|
|
| |
added bigint support for mysqli_affected_rows
fixed memleak in mysqli_prepare (stmt->is_null)
fixed return type for mysqli_connect
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
* 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.
|
|
|
|
|
| |
this function is available since libmysql change set 1.1450 (2002-02-13)
|
| |
|
|
|