diff --git a/reference/mysqlnd_qc/changes.xml b/reference/mysqlnd_qc/changes.xml index e4f2195963..fb505f4e43 100644 --- a/reference/mysqlnd_qc/changes.xml +++ b/reference/mysqlnd_qc/changes.xml @@ -1,5 +1,5 @@ - + Change History @@ -12,16 +12,94 @@ for a complete list of changes. -
- PECL/mysqlnd_qc 1.1 series +
+ PECL/mysqlnd_qc 1.2 series - 1.1.0 + 1.2.0 - alpha Release date: under development + + + Motto/theme: PHP 5.5 compatibility + + + + + + Feature changes + + + + Update build for PHP 5.5 (Credits: Remi Collet) + + + + + APC storage handler update + + + + Fix build for APC trunk + + + + + + + + Introduced + MYSQLND_QC_VERSION and + MYSQLND_QC_VERSION_ID. + + + + +
+ +
+ PECL/mysqlnd_qc 1.1 series + + 1.1.0 - stable + + + + Release date: 04/2012 + + + + + Motto/theme: PHP 5.4 compatibility, schema pattern based caching and mysqlnd_ms support + + + + + + 1.1.0 - beta + + + + Release date: 04/2012 + + + + + Motto/theme: PHP 5.4 compatibility, schema pattern based caching and mysqlnd_ms support + + + + + + 1.1.0 - alpha + + + + Release date: 04/2012 + + Motto/theme: PHP 5.4 compatibility, schema pattern based caching and mysqlnd_ms support diff --git a/reference/mysqlnd_qc/constants.xml b/reference/mysqlnd_qc/constants.xml index bd085f2062..99b2d8ad50 100644 --- a/reference/mysqlnd_qc/constants.xml +++ b/reference/mysqlnd_qc/constants.xml @@ -174,6 +174,78 @@ $pdo_mysql->query("SELECT id, title FROM news"); + + Other + + + The plugins version number can be obtained using + MYSQLND_QC_VERSION or + MYSQLND_QC_VERSION_ID. + MYSQLND_QC_VERSION + is the string representation of the numerical version number + MYSQLND_QC_VERSION_ID, which is an integer such as 10000. + Developers can calculate the version number as follows. + + + + + + + Version (part) + Example + + + + + Major*10000 + 1*10000 = 10000 + + + Minor*100 + 0*100 = 0 + + + Patch + 0 = 0 + + + MYSQLND_QC_VERSION_ID + 10000 + + + + + + + + + + MYSQLND_QC_VERSION + (string) + + + + Plugin version string, for example, 1.0.0-prototype. + + + + + + + + + + MYSQLND_QC_VERSION_ID + (int) + + + + Plugin version number, for example, 10000. + + + + +