好吧,如果您在开发环境中对其进行测试,那么您现在可以简单地忽略 cloudSQL 路由。
我相信您需要执行以下操作验证您可以使用简单的 MySQL 连接功能进行连接,然后确保安装了 MySQLi(因为未包括 Google App Engine 的 Web 安装步骤)
$link = mysql_connect('localhost', 'admin', 'password');
if(!$link) {
die('Could not connect: ' . mysql_error());
}else{
mysql_close($link);
echo 'Connected successfully and everything seems fine .... Checking MySQLi Installation<br><br>';
if(function_exists('mysqli_connect')) {
echo 'MySQLi is Installed :S';
}else{
echo 'Oops. You need to reconfigure Your PHP Installation to Include MySQLi';
}
}
如果您收到如下回复:
连接成功,一切似乎都很好....检查 MySQLi 安装
哎呀。您需要重新配置 PHP 安装以包含 MySQLi
然后您可能需要重新运行配置以启用 MySQLi 和 PDO 驱动程序
./configure --prefix=$PWD/installdir --enable-bcmath --with-mysql --with-pdo-mysql --with-mysqli