我正在将 xeround 用于 MySQL 数据库,在过去的一年中,我一直在使用 Google Docs 电子表格中的 Google Apps 脚本连接到它。现在突然连不上了。我检查了用户名和密码,并仔细检查了实例信息。我联系了 xeround 以查看 MySQL 数据库是否存在问题,他们说一切正常。我可以使用相同的用户名和密码通过 phpMyAdmin 连接数据库。这是我在 Google Docs 电子表格中的代码:
var connectionstring = "jdbc:mysql://instance276.db.xeround.com.:3859/pantalog";
var conn = Jdbc.getConnection(connectionstring, "xxxxxxxxxx", "xxxxxxxxx");
var stmt = conn.createStatement();
我得到的错误是“无法建立数据库连接。检查连接字符串、用户名和密码。”
Google 是否对 JDBC 进行了一些我不知道的更改?