History log of /php-src/ext/pdo/pdo_dbh.c (Results 226 – 250 of 409)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 6284ef11 09-Oct-2012 Xinchen Hui

Fixed bug #63236 (Executable permission on various source files)

Revision tags: php-5.3.18RC1, php-5.4.8RC1, php-5.3.17, php-5.4.7, php-5.4.7RC1, php-5.3.16, php-5.4.6
# 53c8612f 02-Aug-2012 Xinchen Hui

Fixed bug #62685 (Wrong return datatype in PDO::inTransaction())

# cd896d69 02-Aug-2012 Xinchen Hui

Fixed bug #62685 (Wrong return datatype in PDO::inTransaction())

Revision tags: php-5.4.6RC1, php-5.4.5, php-5.3.15, php-5.3.15RC1, php-5.4.5RC1
# b025b9d0 27-Jun-2012 Johannes Schlüter

Fix #62432 ReflectionMethod random corrupt memory on high concurrent

This fixes the same issue in multiple extensions. This isn't needed
in later branches as 5.4 introduced object_proper

Fix #62432 ReflectionMethod random corrupt memory on high concurrent

This fixes the same issue in multiple extensions. This isn't needed
in later branches as 5.4 introduced object_properties_init()

show more ...

Revision tags: php-5.3.14, php-5.4.4, php-5.3.14RC2, php-5.4.4RC2, php-5.3.14RC1, php-5.4.4RC1, php-5.3.13, php-5.4.3, php-5.4.2, php-5.3.12, php-5.3.11, php-5.4.1, php-5.3.11RC2, php-5.4.1RC2, php-5.3.11RC1, php-5.4.1RC1, PHP-5.4.1-RC1
# a32a1992 06-Mar-2012 Xinchen Hui

Fixed bug #61292 (Segfault while calling a method on an overloaded PDO object)

Revision tags: php-5.4.0, php-5.4.0RC8, php-5.3.10, php-5.4.0RC7, php-5.4.0RC6, php-5.3.9, php-5.4.0RC5
# e4ca0ed0 01-Jan-2012 Felipe Pena

- Year++

# 4e198252 01-Jan-2012 Felipe Pena

- Year++

Revision tags: php-5.3.9RC4, php-5.4.0RC4, php-5.3.9RC3, php-5.4.0RC3, php-5.3.9RC2, php-5.4.0RC2, php-5.4.0RC1
# cacf3639 08-Nov-2011 Dmitry Stogov

Fixed bug #60104 (Segmentation Fault in pdo_sqlite when using sqliteCreateFunction())

Revision tags: php-5.3.9RC1, php-5.4.0beta2, php-5.4.0beta1
# 4a25a774 13-Sep-2011 Dmitry Stogov

Fixed ZE specific compile warnings (Bug #55629)

Revision tags: yaf-2.1.0, php-5.3.8, php-5.3.7, php-5.3.7RC5
# 34f08a37 07-Aug-2011 Ilia Alshanetsky

Fixes for variety of issues identified by coverity scan

# 9db1c593 07-Aug-2011 Ilia Alshanetsky

Fixes for variety of issues identified by coverity scan

Revision tags: php-5.4.0alpha3, php-5.3.7RC4, php-5.3.7RC3, php-5.4.0alpha2, php-5.3.7RC2, php-5.4.0alpha1, php-5.3.7RC1, php-5.3.6, php-5.3.6RC3, php-5.3.6RC2, php-5.3.6RC1, php-5.2.17, php-5.3.5
# 927bf09c 01-Jan-2011 Felipe Pena

- Year++

# 0203cc3d 01-Jan-2011 Felipe Pena

- Year++

# 9b698dbc 21-Dec-2010 Gustavo André dos Santos Lopes

- Revert of revision 306542, turns out the semantics of compare() are
different in SplMinHeap and SplMaxHeap.

Revision tags: php-5.2.16, php-5.2.15, php-5.3.4, php-5.2.15RC2, php-5.3.4RC2, php-5.3.4RC1, php-5.2.15RC1, PHP_5_2_15RC1
# f2df6a4a 15-Sep-2010 Dmitry Stogov

- Improved memory usage
. zend_function.pass_rest_by_reference is replaced by
ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags
. zend_function.return_reference is replace

- Improved memory usage
. zend_function.pass_rest_by_reference is replaced by
ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags
. zend_function.return_reference is replaced by ZEND_ACC_RETURN_REFERENCE
in zend_function.fn_flags
. zend_arg_info.required_num_args removed. it was needed only for internal
functions. Now the first arg_info for internal function (which has special
meaning) is represented by zend_internal_function_info structure.
. zend_op_array.size, size_var, size_literal, current_brk_cont,
backpatch_count moved into CG(context), because they are used only during
compilation.
. zend_op_array.start_op is moved into EG(start_op), because it's used
only for 'interactive' execution of single top-level op-array.
. zend_op_array.done_pass_two is replaced by ZEND_ACC_DONE_PASS_TWO in
zend_op_array.fn_flags.
. op_array.vars array is trimmed (reallocated) during pass_two.
. zend_class_entry.constants_updated is replaced by
ZEND_ACC_CONSTANTS_UPDATED in zend_class_entry.ce_flags
. the size of zend_class_entry is reduced by sharing the same memory space
by different information for internal and user classes.
See zend_class_inttry.info union.

show more ...

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
# 24b8bc34 15-Jun-2010 Ilia Alshanetsky

Removed the in_transaction handler for 5.3 to avoid BC break due to structure change

# 90906a91 10-Jun-2010 Ilia Alshanetsky

Added inTransaction() method to PDO, with specialized support for Postgres

# 6ed1819b 10-Jun-2010 Ilia Alshanetsky

Added inTransaction() method to PDO, with specialized support for Postgres

# c5237d82 24-May-2010 Dmitry Stogov

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

# 2bc3611c 19-May-2010 Derick Rethans

- Fixed name.

# 77b2e546 06-May-2010 Dmitry Stogov

Fixed PDO objects binary incompatibility

# dd8e59da 26-Apr-2010 Kalle Sommer Nielsen

Removed safe_mode
* Removed ini options, safe_mode*
* Removed --enable-safe-mode --with-exec-dir configure options on Unix
* Updated extensions, SAPI's and core
* php_get_current_

Removed safe_mode
* Removed ini options, safe_mode*
* Removed --enable-safe-mode --with-exec-dir configure options on Unix
* Updated extensions, SAPI's and core
* php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore

show more ...

# 94dd8372 20-Apr-2010 Dmitry Stogov

Changed the structure of op_array.opcodes. The constant values are moved from opcode operands into a separate literal table

# e670a3f9 01-Apr-2010 Ilia Alshanetsky

On beginTransaction() reset error state

# c2e16d3c 01-Apr-2010 Ilia Alshanetsky

On beginTransaction() reset error state

12345678910>>...17