History log of /PHP-7.0/ext/mysqli/mysqli_api.c (Results 251 – 275 of 345)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 5c50f0bb 20-Dec-2004 Georg Richter

prevent type conversion during mysql_stmt_execute for NULL variables


Revision tags: php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1
# b8863135 01-Nov-2004 Georg Richter

Fixed tests for empty dates (see http://bugs.mysql.com/?id=6058)
Fixed memleak in mysqli_stmt_bind_result
Fixed error handling for mysqli_multi_query


Revision tags: PRE_NEW_VM_GEN_PATCH, php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH
# eb3900b7 04-Sep-2004 Georg Richter

forgot to remove comment in last commit


Revision tags: php-4.3.9RC2
# c8572b0b 25-Aug-2004 Georg Richter

changed local_infile_handler:
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'

changed local_infile_handler:
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.

show more ...


# 8ff95281 12-Aug-2004 Georg Richter

minor fix in mysqli_prepare: copying stmt errormessag to mysql structure


Revision tags: php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1
# f064a2c8 22-Jul-2004 Sara Golemon

This should fix binary safety for bound results or may coogle strike me down.


Revision tags: RELEASE_0_1
# 56f8195f 19-Jul-2004 Andi Gutmans

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have to check for it and it slows down
the general case. In addition, it seems that empty_string has been abused
quite a lot, and was used not only for setting zval's but generally in
PHP code instead of "", which wasn't the intention. Last but not least,
nuking empty_string should improve stability as I doubt every place
correctly checked if they are not mistakenly erealloc()'ing it or
calling efree() on it.
NOTE: Some code is probably broken. Each extension maintainer should
check and see that my changes are OK. Also, I haven't had time to touch
PECL yet. Will try and do it tomorrow.

show more ...


# 15ef63b3 17-Jul-2004 Georg Richter

fixed paraenthesis warning in mysql_stmt_attr_set/get


Revision tags: php-5.0.0RC4, php-5.0.0
# bfd3c9ec 13-Jul-2004 Georg Richter

prototype fixes


# f61dbf06 13-Jul-2004 Georg Richter

changed mysqli_stmt_reset (returns now bool instead of void)


Revision tags: php-4.3.8
# 9db1075c 07-Jul-2004 Georg Richter

added check in config.m4 for deprecated library
added support for new 4.1.3-beta functions
mysqli_stmt_field_count
mysqli_stmt_attr_set
mysqli_stmt_attr_get

added check in config.m4 for deprecated library
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

show more ...


# 202d2990 08-Jun-2004 Georg Richter

fixed crash (changed MYSQL TO MY_MYSQL in mysql_stmt_init)


Revision tags: php-5.0.0RC3
# f0468116 06-Jun-2004 Georg Richter

removed conditional defines for load_data_infile_handlers on windows
(4.1.2 windows build is fixed now on mysql.com)


# 93bf6517 05-Jun-2004 Georg Richter

Major changes for 4.1.2-alpha/4.1.3-beta:
- added container for mysql structure
- added load data infile callback functions (currently disabled under win)
Bug fixes:
- fixed property

Major changes for 4.1.2-alpha/4.1.3-beta:
- 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

show more ...


Revision tags: php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1, php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5, php-4.3.5RC4, php-5.0.0RC1
# e6ac7442 18-Mar-2004 Georg Richter

fixed problems in mysql_stmt_init (missing alloc from stmt)


Revision tags: php-5.0.0RC1RC2
# e3077ead 16-Mar-2004 Georg Richter

fixed stmt->stmt->query which was removed in libmysql 4.1.2
added query buffer in internal stmt structure to copy string
after prepare


Revision tags: php-5.0.0RC1RC1
# a3bd712b 10-Mar-2004 Georg Richter

added new function mysql_stmt_free_result


# 612ab199 09-Mar-2004 Georg Richter

fixed memleaks in bind functions
added 4.1.2 support (renamed functions)


Revision tags: RELEASE_0_2_0
# 700bb4db 26-Feb-2004 Georg Richter

prototype fix for mysqli_ping


# 8e52a1a8 26-Feb-2004 Georg Richter

added MySQLI ini entries
added ini parameter for mysql->reconnect


# 5ffccfff 26-Feb-2004 Georg Richter

removed blocking calls to mysql_set_server_option (MYSQLI_DISABLE_MQ)
added mysqli_multi_query to function table
changed stmt->affected_rows property (http://bugs.mysql.com/?id=2247) for 4.1.2


# b3979e76 23-Feb-2004 Georg Richter

fixed report message
Disabled reconnect option


# 1f67407f 20-Feb-2004 Georg Richter

Moved functions for replication support in to file mysqli_repl.c
- these functions are marked as experimental now in documentation
not sure if we will replace or extend them with NDB su

Moved functions for replication support in to file mysqli_repl.c
- these functions are marked as experimental now in documentation
not sure if we will replace or extend them with NDB support in
April

show more ...


# a12c95e1 18-Feb-2004 Georg Richter

changed return value of mysql_fetch
- instead of MYSQL_NO_DATA mysql_fetch will now return NULL


Revision tags: php-4.3.5RC3
# d5084182 15-Feb-2004 Georg Richter

fixed several binding problems


1...<<11121314