History log of /PHP-5.5/ext/mysqli/mysqli.c (Results 51 – 75 of 231)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.3.4RC2, php-5.3.4RC1, php-5.2.15RC1, PHP_5_2_15RC1
# 062ddaa7 06-Oct-2010 Andrey Hristov

fix shadowing of parameters


# b373ccd6 06-Oct-2010 Andrey Hristov

fix shadowing of parameters


# cc1eaba4 05-Oct-2010 Kalle Sommer Nielsen

Fixed compiler warnings in mysqli

- mysqli.c: Fix unused variables, they are only used in non-mysqlnd mode
- mysqli_api.c (PHP_5_3 only): Fix constness, add_property_string expects a c

Fixed compiler warnings in mysqli

- mysqli.c: Fix unused variables, they are only used in non-mysqlnd mode
- mysqli_api.c (PHP_5_3 only): Fix constness, add_property_string expects a char *, not a const char *
- mysqli_prop.c: Cast to long, as its below the LONG_MAX and therefore safe
- mysqli_result_iterator.c: Cast to ulong as the iterator member expects that rather than a my_longlong

# In trunk only warnings regarding the zend_property_info
# structure is present and PHP_5_3 is warning free now

show more ...


# 5aca10ee 04-Oct-2010 Ulf Wendel

Trying to fix compiler warnings (on Windows).


# 926ba0d9 04-Oct-2010 Ulf Wendel

Trying to fix compiler warnings (on Windows).


# 2d925fb2 04-Oct-2010 Ulf Wendel

Sorry for the commit but compiler warnings are annoying and so are white spaces at the end of a line, if one uses an editor which removes them on save and diff's get blown
up by white space chang

Sorry for the commit but compiler warnings are annoying and so are white spaces at the end of a line, if one uses an editor which removes them on save and diff's get blown
up by white space changes...

Changes:
- remove end of line white space
- fix compiler warning "ext/mysqli/mysqli_priv.h:156:27: warning: no newline at end of file"
- fix compiler warning "ext/mysqli/mysqli_fe.h:135:25: warning: no newline at end of file"
- fix compiler warning "ext/mysqli/mysqli.c:896:11: warning: extra tokens at end of #ifdef directive"

show more ...


# e20c62d3 04-Oct-2010 Ulf Wendel

Sorry for the commit but compiler warnings are annoying and so are white spaces at the end of a line, if one uses an editor which removes them on save and diff's get blown
up by white space chang

Sorry for the commit but compiler warnings are annoying and so are white spaces at the end of a line, if one uses an editor which removes them on save and diff's get blown
up by white space changes...

Changes:
- remove end of line white space
- fix compiler warning "ext/mysqli/mysqli_priv.h:156:27: warning: no newline at end of file"
- fix compiler warning "ext/mysqli/mysqli_fe.h:135:25: warning: no newline at end of file"
- fix compiler warning "ext/mysqli/mysqli.c:896:11: warning: extra tokens at end of #ifdef directive"

show more ...


# 60327d87 30-Sep-2010 Andrey Hristov

Plug a leak in mysqli when in the same script
a pconn is reused.
Call end_psession earlier - so will mysqlnd and
the plugins free data earlier.


# 77d73b81 30-Sep-2010 Andrey Hristov

Plug a leak in mysqli when in the same script
a pconn is reused.
Call end_psession earlier - so will mysqlnd and
the plugins free data earlier.


# 6a43b148 27-Sep-2010 Andrey Hristov

Fixed bug #45921 (Can't initialize character set hebrew)
sorry for committing it separated


# 42a80fac 27-Sep-2010 Andrey Hristov

Fixed bug #45921 (Can't initialize character set hebrew)


# fc2143b9 14-Sep-2010 Andrey Hristov

unify magic quotes handling. Also fix a problem which
resulted in a longjmp in debug PHP,because of usage of
zval that is NULL in a hash context.


# 42fea468 30-Aug-2010 Ulf Wendel

Adding MYSQLI_OPT_SSL_VERIFY_SERVER_CERT for use with mysqli_options().


# f671ad62 30-Aug-2010 Ulf Wendel

Adding MYSQLI_OPT_SSL_VERIFY_SERVER_CERT for use with mysqli_options().


# d9f50d95 26-Aug-2010 Andrey Hristov

Add proper magic_quotes_runtime support for mysqlnd, but
in mysqli, so we don't need to tamper myslqnd.
magic_quotes_runtime are deprecated and not existant in 5.4, thus
only fixing in th

Add proper magic_quotes_runtime support for mysqlnd, but
in mysqli, so we don't need to tamper myslqnd.
magic_quotes_runtime are deprecated and not existant in 5.4, thus
only fixing in the branch.

show more ...


# 67ef7201 20-Aug-2010 Andrey Hristov

Fix for bug #52654 mysqli doesn't install headers with structures it uses


# 27567040 20-Aug-2010 Andrey Hristov

Fix for bug #52654 mysqli doesn't install headers with structures it uses


# 9806c212 13-Aug-2010 Kalle Sommer Nielsen

Changed mysqli_report() to be per-request specific rather than per-process specific (Fixes #52390)


# e72a69aa 13-Aug-2010 Kalle Sommer Nielsen

Changed mysqli_report() to be per-request specific rather than per-process specific (Fixes #52390)


Revision tags: oci8-1.4.3, php-5.2.14, php-5.3.3, php-5.3.3RC3, php-5.2.14RC3, php-5.3.3RC2, php-5.2.14RC2, php-5.3.3RC1, php-5.2.14RC1
# d6458c3b 26-May-2010 Andrey Hristov

Add checks to check the underlying pointer in the resource.
It can happen that the underlying pointer is freed (like in
the case of connection reconnect), and then it cannot be allocated

Add checks to check the underlying pointer in the resource.
It can happen that the underlying pointer is freed (like in
the case of connection reconnect), and then it cannot be allocated
anymore, which means that NULL will be used consequently by the
functions that fetch the resource and the crash is immediate.

show more ...


# ce682f1b 26-May-2010 Andrey Hristov

Add checks to check the underlying pointer in the resource.
It can happen that the underlying pointer is freed (like in
the case of connection reconnect), and then it cannot be allocated

Add checks to check the underlying pointer in the resource.
It can happen that the underlying pointer is freed (like in
the case of connection reconnect), and then it cannot be allocated
anymore, which means that NULL will be used consequently by the
functions that fetch the resource and the crash is immediate.

show more ...


# c5237d82 24-May-2010 Dmitry Stogov

Added caches to eliminate repeatable run-time bindings of functions, classes, constants, methods and properties


# c91c86b7 18-May-2010 Andrey Hristov

Remove duplicated code.
Use one centralized functions for data extraction.


# 7dd13d56 18-May-2010 Andrey Hristov

Add iterator to mysqli_result. Works both for :
- USE_RESULT, can be iterated only once, kind of forward iterator
- STORE_RESULT, can be iterated multiple times


# 87bac04b 13-May-2010 Andrey Hristov

Better fix for #51605


12345678910