java连接mysql, No suitable driver

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java连接mysql, No suitable driver相关的知识,希望对你有一定的参考价值。

一个简单的登陆页面连到数据库,有mysql的5.0.7驱动,main方法测试过连接正常,部署到tomcat中,页面登陆报错Unhandled exception
java.sql.SQLException: No suitable driver

发生在return DriverManager.getConnection(url,username,password)这句

望高手解答,谢谢
回2楼,jar包都放了,很奇怪~

..........
public static final Connection con=null;
public static Connection getCon()

try

Class.forname();
con=DriverManager.getConnection(url,username,password);


catch(SQLException e)

System.out.println(e);

finally

try
con.close();

catch(SQLException e )

System.out.println(e);


return con
参考技术A 应该是 Class.forname("com.mysql.jdbc.Driver");的吧

你说部署到Tomcat是用JNI的意识么?

那样的话,是不是没把MYSQL的jdbc放到tomcat的common lib底下呀
参考技术B 没加载驱动吧

No suitable driver found for jdbc:mysql://localhost:3306/test

No suitable driver found for jdbc:mysql://localhost:3306/test

敲入list.jsp或者index.jsp后出现这个错误,只是数据库没连上,找到了解决办法。

  一是:连接URL格式出现了问题(Connection conn=DriverManager.getConnection      ("jdbc:mysql://localhost:3306/XX","root","XXXX")
    二是:驱动字符串出错(com.mysql.jdbc.Driver)
    三是Classpath中没有加入合适的mysql_jdbc驱动
    经过我的仔细检查,这三种错误我都没有犯,为什么呢?
    尝试着将mysql-connector-java-5.1.6-bin.jar的jar包加入E:\\Program Files\\Java\\jdk1.6.0_20\\jre\\lib\\ext文件夹下,问题解决了!!
    原来是不仅仅要求将驱动加入classpath中,而且需要将该jar包加入到java运行环境的外部jar包中。

 

参考:http://www.blogjava.net/w2gavin/articles/217864.html


以上是关于java连接mysql, No suitable driver的主要内容,如果未能解决你的问题,请参考以下文章

关于初次使用java jdbc遇到数据库连接不上的问题java.sql.SQLException: No suitable driver found for jdbc:mysql://127.0.0.

java.sql.SQLException: No suitable driver 问题解决

异常java.sql.SQLException: No suitable driver found for jdbc://mysql://hadoop001:3306/xxx

数据库连接常见报错及解决java.sql.SQLException No suitable driver

数据库连接常见报错及解决java.sql.SQLException No suitable driver

JAVA报错no suitable driver