当前位置: 技术问答>java相关
連結 Mysql 失敗
来源: 互联网 发布时间:2015-05-17
本文导语: import java.sql.*; public class dbtest { public static void main(String[] args) { Connection con = null; try { Class.forName("org.gjt.mm.mysql.Driver").newInstance(); System.out.println("JDBC Driver loade...
import java.sql.*;
public class dbtest {
public static void main(String[] args) {
Connection con = null;
try {
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
System.out.println("JDBC Driver loaded");
con = DriverManager.getConnection("jdbc:mysql://localhost/mysql?user=root&password=pass");
System.out.println("Database connected");
}catch (ClassNotFoundException cnfe) {
System.out.println(" Could Not Locate Driver");
}catch (Exception e) {
System.out.println(" Unknown error1 ");
}finally {
try{
if(con!=null) con.close();
}catch (Exception e) {
System.out.println(" Unknown error2 ");
}
}
}
}
++++++++++++++++++++++++++
結果 ;
JDBC Driver loaded
Unknown error1
但是 我的 Mysql 已經運行.
不知道是甚麼原因?
public class dbtest {
public static void main(String[] args) {
Connection con = null;
try {
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
System.out.println("JDBC Driver loaded");
con = DriverManager.getConnection("jdbc:mysql://localhost/mysql?user=root&password=pass");
System.out.println("Database connected");
}catch (ClassNotFoundException cnfe) {
System.out.println(" Could Not Locate Driver");
}catch (Exception e) {
System.out.println(" Unknown error1 ");
}finally {
try{
if(con!=null) con.close();
}catch (Exception e) {
System.out.println(" Unknown error2 ");
}
}
}
}
++++++++++++++++++++++++++
結果 ;
JDBC Driver loaded
Unknown error1
但是 我的 Mysql 已經運行.
不知道是甚麼原因?
|
Mysql 登入失敗.檢查是否有權限 .
localhost 會替換成 機器的 hostname ,
檢查 Mysql 的權限表 root@[hostname] 是否有權限登入 .
localhost 會替換成 機器的 hostname ,
檢查 Mysql 的權限表 root@[hostname] 是否有權限登入 .
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。