作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我在 Android 中编写的第一个代码,请大家多多包涵:D
我有这个代码:
应用程序运行,没有错误,但无法连接到数据库...
并将其写入 logcat:
myapplication W/System.err: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
我在互联网上寻找帮助但没有成功:(((
最佳答案
来自您的粘贴箱
Connection conn = DriverManager.getConnection("jdbc:mysql://sql11.freemysqlhosting.net:3306/sqluname?autoReconnect=true", "sqldbname", "sqlpwd");
来自 DriverManager 文档 ( https://docs.oracle.com/javase/7/docs/api/java/sql/DriverManager.html )
static Connection getConnection(String url)
static Connection getConnection(String url, Properties info)
static Connection getConnection(String url, String user, String password)
看来您在连接方法中混淆了用户名和数据库名称。换句话说,尝试
Connection conn = DriverManager.getConnection("jdbc:mysql://sql11.freemysqlhosting.net:3306/sqldbname?autoReconnect=true", "sqluname", "sqlpwd");
关于java - 出于想法,MySQLNonTransientConnectionException : Could not create connection to database server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47761212/
我是一名优秀的程序员,十分优秀!