History log of /PHP-5.4/ext/mysqlnd/mysqlnd.h (Results 76 – 100 of 100)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.3.0RC4
# 0aada076 17-Jun-2009 Andrey Hristov

MFH:
Fix two problems:
- The value of mysqli_get_client_info() has been changed recently and did
not include "mysqlnd" anymore thus the test suite was thinking the build
is always lib

MFH:
Fix two problems:
- The value of mysqli_get_client_info() has been changed recently and did
not include "mysqlnd" anymore thus the test suite was thinking the build
is always libmysql. This did not kept the suite from running pconn tests
- Going back to the libc allocator because the memory arena could be on a
persistent connections. If the build is not debug there will be no error
but the memory will be freed and in the second use of this pconn freed
memory will be used - not good! For now the arena doesn't take an argument
whether it should allocate persistently or not, thus persistent is safe
for now.

Johannes gave his +1 to commit this.

show more ...


Revision tags: php-5.2.10, php-5.2.10RC2
# 11340cf2 11-Jun-2009 Johannes Schlüter

MFH: Use a better extension version


# a3b85c28 11-Jun-2009 Andrey Hristov

Sync with PHP6 - TSRMLS_FETCH
Extract reference decrement in own function
Remove PHPAPI of a function and make it static as it is not called
externally


Revision tags: php-5.3.0RC3
# 6c4e8fa4 28-May-2009 Andrey Hristov

MFH:
Fix a bug with mysqlnd_fetch_field(_direct()). With mysqlnd the optimised
function was called, which however, doesn't respect that during store the
raw data is not unpacked, to be la

MFH:
Fix a bug with mysqlnd_fetch_field(_direct()). With mysqlnd the optimised
function was called, which however, doesn't respect that during store the
raw data is not unpacked, to be lazy. The data is unpacked to zvals later,
during every row fetch. However, this way max_length won't be calculated
correctly. So, if a mysqlnd_fetch_field(_direct) call comes we need to
unpack everything and then calculate max_length...and that is expensive,
defies our lazy unpacking optimisation.

show more ...


Revision tags: php-5.2.10RC1, php-5.3.0RC2, php-5.3.0RC1, RELEASE_1_3_5, php-5.2.9, php-5.2.9RC3
# ebef020e 16-Feb-2009 Johannes Schlüter

- MFH: Improve mysqlnd's internal method registration


Revision tags: php-5.2.9RC2, php-5.2.9RC1, php-5.3.0beta1
# 08659c2d 31-Dec-2008 Sebastian Bergmann

MFH: Bump copyright year, 3 of 3.


Revision tags: NEWS, php-5.2.8, BEFORE_HEAD_NS_CHANGES_MERGE, php-5.3.0alpha3, php-5.3.0alpha2, php-5.2.7, php-5.2.7RC5, php-5.2.7RC4
# d43b7b02 20-Nov-2008 Andrey Hristov

MFH:
Windows fixes for mysqlnd
Less warnings + PHPAPI for mysqlnd_poll


# 825034ce 18-Nov-2008 Andrey Hristov

MFH:
Asynchronous queries for mysqli, when mysqlnd is enabled.
Includes 4 tests for mysqli_poll


Revision tags: BEFORE_HEAD_NS_CHANGE, BEFORE_NS_RULES_CHANGE, php-5.2.7RC3
# 91865289 06-Nov-2008 Andrey Hristov

MFH:
Get rid of many defines (which simplifies the code a lot),
as well as uint->unsigned int


Revision tags: php-5.2.7RC2, php-5.2.7RC1
# 5f7bd521 15-Sep-2008 Andrey Hristov

MFH:Compile-in a string-to-int conversion for INT columns by default,
controlled by a ini setting.


Revision tags: php-4.4.9, php-5.3.0alpha1, php-4.4.9RC1
# e0f45cf7 24-Jun-2008 Andrey Hristov

Fix possible bug with persistent connections and mysqlnd


Revision tags: BEFORE_NEW_PARAMETER_PARSE, RELEASE_1_2_5, RELEASE_2_0_0b1
# 82562725 07-May-2008 Andrey Hristov

Update mysqlnd


Revision tags: php-5.2.6
# f4e659d2 24-Apr-2008 Andrey Hristov

Update ext/mysql's and ext/mysqli's tests
Add mysqli_stmt_more_result()/mysqli_stmt_next_result(), but only in
mysqlnd builds as libmysql doesn't support this feature.


# 1a419cac 23-Apr-2008 Johannes Schlüter

- MFH: Fix Windows build


# de560f31 16-Apr-2008 Andrey Hristov

MFB: Update CVS from the development tree


Revision tags: RELEASE_1_0_2, php-5.2.6RC5, php-5.2.6RC4, php-5.2.6RC3, RELEASE_2_0_0a2, RELEASE_2_0_0a1, php-5.2.6RC2, php-5.2.6RC1, RELEASE_1_3_1
# 28e7d996 14-Feb-2008 Andrey Hristov

Another fix


# 2d9d2239 14-Feb-2008 Andrey Hristov

Update mysqlnd - fix bg_store


# cf07e941 11-Feb-2008 Andrey Hristov

cvs sync


# 829831f5 29-Jan-2008 Andrey Hristov

Fix the build, add a missing file


# d95c29d7 28-Jan-2008 Andrey Hristov

Moving extension specific code to php_mysqlnd.c as the old rule is.


# 7932ccba 28-Jan-2008 Andrey Hristov

More optimizations - less MM calls
Clearly separated fetching (physical reading) from decoding phases (data
interpretation). Threaded fetching added but disabled as needs more work for
Wi

More optimizations - less MM calls
Clearly separated fetching (physical reading) from decoding phases (data
interpretation). Threaded fetching added but disabled as needs more work for
Windows. For Linux needs some touches to add pthreads if this is enabled,
probably with a compile-time switch.
The code reorganisation makes it easy to add also async API, similar to
cURL's one.

show more ...


# c52b63ea 23-Jan-2008 Andrey Hristov

Merge with internal version


Revision tags: php-4.4.8
# fdf20a82 02-Jan-2008 Andrey Hristov

- Fix problems with double definitions
- Clean up a bit a type mess - 4 types less. No need to have aliases
for the same thing (unification is the name).
- New macro for Johannes mysqln

- Fix problems with double definitions
- Clean up a bit a type mess - 4 types less. No need to have aliases
for the same thing (unification is the name).
- New macro for Johannes mysqlnd_stmt_ro_result_metadata

show more ...


# d1dded87 31-Dec-2007 Sebastian Bergmann

MFH: Bump copyright year, 2 of 2.


Revision tags: php-4.4.8RC1, RELEASE_1_2_3, php-5.2.5, php-5.2.5RC2, php-5.2.5RC1
# 8b9b553a 05-Oct-2007 Andrey Hristov

Import mysqlnd
Patch ext/mysql and ext/mysqli to support mysqlnd


1234