knc
11-2-07, 02:34 AM
Server information for my account indicates:
PHP Version: 5.2.2
MySQL Version: 5.0.45
The information returned from phpinfo() indicates the MySQL client API version is 4.1.11.
The MySQL developer site (http://dev.mysql.com/downloads/connector/php/) is clear about minimizing problems by matching the client API to the server version. We recommend to use the MySQL Client API version that matches the MySQL Server version. For the MySQL Server 5.0.27 you should use the MySQL Client API 5.0.27 (mysql.com download) but not 4.1.7 (php.net download). For example, mysqli_stmt_bind_param() will fail when you try to access a DECIMAL column on a MySQL 5.0.27 server if you use old versions of the MySQL Client API, like the php.net downloads do.
Will PowWeb be doing an update to correct this?
PHP Version: 5.2.2
MySQL Version: 5.0.45
The information returned from phpinfo() indicates the MySQL client API version is 4.1.11.
The MySQL developer site (http://dev.mysql.com/downloads/connector/php/) is clear about minimizing problems by matching the client API to the server version. We recommend to use the MySQL Client API version that matches the MySQL Server version. For the MySQL Server 5.0.27 you should use the MySQL Client API 5.0.27 (mysql.com download) but not 4.1.7 (php.net download). For example, mysqli_stmt_bind_param() will fail when you try to access a DECIMAL column on a MySQL 5.0.27 server if you use old versions of the MySQL Client API, like the php.net downloads do.
Will PowWeb be doing an update to correct this?