mysql数据库连接问题

ResultSetrs=null;Statementstmt=null;Connectionconn=null;Class.forName("com.mysql.jdbc... ResultSet rs = null;
Statement stmt = null;
Connection conn =null;

Class.forName("com.mysql.jdbc.Driver").newInstance();
String url ="jdbc:mysql://localhost/mybbs";

conn = DriverManager.getConnection(url,"root","root");

stmt = conn.createStatement();
rs = stmt.executeQuery("select * from posts");

为什么在conn = DriverManager.getConnection(url,"root","root");这句报错
javax.servlet.ServletException: com.mysql.jdbc.CommunicationsException: Communications link failure due to underlying exception:

** BEGIN NESTED EXCEPTION **

java.net.SocketException
MESSAGE: java.net.ConnectException: Connection refused: connect

com.mysql.jdbc.CommunicationsException: Communications link failure due to underlying exception:

** BEGIN NESTED EXCEPTION **

java.net.SocketException
MESSAGE: java.net.ConnectException: Connection refused: connect
展开
 我来答
百度网友f2081ce
2009-01-08 · TA获得超过198个赞
知道小有建树答主
回答量:249
采纳率:0%
帮助的人:213万
展开全部
如果报错的话把错误贴出来,还有就是你倒没倒连接jar包,3个jar加在程序里了吗?
import java.sql.*;
Connection conn =null;
try {
Class.forName("com.mysql.jdbc.Driver");
conn=DriverManager.getConnection("jdbc:mysql://localhost/mybbs", "root", "root");
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式