History log of /php-src/ext/mysqlnd/mysqlnd_ps.c (Results 151 – 175 of 294)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# c2f8e905 06-Jan-2013 Xinchen Hui

Merge branch 'PHP-5.3' into PHP-5.4


# bc11e6fd 06-Jan-2013 Xinchen Hui

bump year

Revision tags: php-5.3.21RC1, php-5.4.11RC1, php-5.3.20, php-5.4.10, php-5.5.0alpha2, php-5.3.20RC1, php-5.4.10RC1, php-5.3.19, php-5.4.9, php-5.5.0alpha1, php-5.3.19RC1, php-5.4.9RC1, php-5.3.18, php-5.4.8, php-5.3.18RC1, php-5.4.8RC1
# 6074df91 25-Sep-2012 andrey

remove old unicode code, that is was compiled out by using a macro

Revision tags: php-5.3.17, php-5.4.7, php-5.4.7RC1, php-5.3.16, php-5.4.6, php-5.4.6RC1, php-5.4.5, php-5.3.15, php-5.3.15RC1, php-5.4.5RC1, php-5.3.14, php-5.4.4, php-5.3.14RC2, php-5.4.4RC2, php-5.3.14RC1
# 4d2d8e87 16-May-2012 andrey

Merge branch 'PHP-5.3' into PHP-5.4

Conflicts:
ext/mysqlnd/mysqlnd_ps.c

merge fix for bug#62046


# d4afbd48 16-May-2012 andrey

Fix for bug#62046

Bug#62046 mysqli@mysqlnd can't iterate over stored sets after call to
mysqli_stmt_reset().

Stmt's state was changed to STMT_PREPARED and leads the driver to th

Fix for bug#62046

Bug#62046 mysqli@mysqlnd can't iterate over stored sets after call to
mysqli_stmt_reset().

Stmt's state was changed to STMT_PREPARED and leads the driver to think
that the stmt was just prepared. Because result set exist also for only
prepared but not executed sets, the check for stmt->result isn't any good.
There is a result set, because as response for COM_PREPARE the server sends
metadata and metadata is part of a result set. After COM_EXECUTE the server
sends metadata again, which could be different and in this case more correct.

show more ...

Revision tags: php-5.4.4RC1, php-5.3.13, php-5.4.3, php-5.4.2, php-5.3.12
# 67419499 02-May-2012 andrey

Merge branch 'PHP-5.3' into PHP-5.4


# b42d0004 02-May-2012 andrey

Fix for bug#61411

Bug #61411 PDO Segfaults with PERSISTENT == TRUE && EMULATE_PREPARES == FALSE
Wrong allocation, that doesn't follow the scheme of using stmt->persistent
was the roo

Fix for bug#61411

Bug #61411 PDO Segfaults with PERSISTENT == TRUE && EMULATE_PREPARES == FALSE
Wrong allocation, that doesn't follow the scheme of using stmt->persistent
was the root cause of the problem and the crash at free.

show more ...

Revision tags: 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, 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, php-5.3.9RC1
# 8fb6bdd5 31-Oct-2011 Andrey Hristov

Split struct MYSQLND in struct MYSQLND and struct MYSQLD_CONN_DATA.
A step in the direction of keeping internal data private

# f926a3c0 25-Oct-2011 Andrey Hristov

Move from directly referencing an aggregated structure to using a
pointer to a structure. The structure is still aggregated but we add
a level of indirection for possible plugins to overwrite

Move from directly referencing an aggregated structure to using a
pointer to a structure. The structure is still aggregated but we add
a level of indirection for possible plugins to overwrite the storage

show more ...

# 4321da03 24-Oct-2011 Andrey Hristov

move plugin specific stuff to one file. create object factory
for similar objects

# 652490d4 21-Oct-2011 Andrey Hristov

shift code around to two new files - mysqlnd_driver.c
and mysqlnd_ext_plugin.c (mysqlnd extension plugin)

Revision tags: php-5.4.0beta2
# a68abe83 17-Sep-2011 Pierre Joye

- fix TS build

# d6ab6bc6 16-Sep-2011 Dmitry Stogov

Fixed Windows build

Revision tags: php-5.4.0beta1
# 049a7c49 06-Sep-2011 Andrey Hristov

add query information to the trace log

# 9f7ad10a 02-Sep-2011 Andrey Hristov

function rename to comply with the schema of other callbacks

# d96e924b 02-Sep-2011 Andrey Hristov

function rename to comply with the schema of other callbacks

Revision tags: yaf-2.1.0, php-5.3.8, php-5.3.7, php-5.3.7RC5
# c9e7716c 04-Aug-2011 Andrey Hristov

Add mysqli_error_list() that returns an array with errors. Typically only
one and just one for libmysql. mysqlnd can return generate more than one error
during its work and with mysqli_error(

Add mysqli_error_list() that returns an array with errors. Typically only
one and just one for libmysql. mysqlnd can return generate more than one error
during its work and with mysqli_error() only the last error is being reported.
In the array returned by mysqli_error_list() / $mysqli->error_list, all errors will be found.
The list is reset when the next command is executed

show more ...

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
# 3afdf62d 21-Mar-2011 Andrey Hristov

throw out legacy code, that never was used for something
useful. Was added for QC but QC is now a plugin, not part of
the core.

# f0644359 18-Mar-2011 Andrey Hristov

add a proxy for sppintf and vspprintf

# c90df585 18-Mar-2011 Andrey Hristov

WS

# 2d2d1c73 18-Mar-2011 Andrey Hristov

new function/methods - mysqlnd_stmt_flush. Removing
code duplication

# ca5df2a8 18-Mar-2011 Andrey Hristov

less trace info

Revision tags: php-5.3.6
# 4a382563 16-Mar-2011 Andrey Hristov

compiler warnings fixed

12345678910>>...12