Home  >  Article  >  Database  >  mysql-eclipseEE连接My SQL出现问题,哪位大神可以帮我看看*^__^*,非常感谢

mysql-eclipseEE连接My SQL出现问题,哪位大神可以帮我看看*^__^*,非常感谢

WBOY
WBOYOriginal
2016-06-06 09:39:411133browse

mysqleclipsesql数据库

<code>    我是想连接MySQL和server SQL数据库,一般来说是在eclipse,通过buil path,然后add external jar配置就可以了,但是我尝试了这样去配置,结果还是不行。然后呢,我有特意去配置了我的环境变量,就是通过“我的电脑--系统--设置环境变量”建立一个classpath变量,然后把驱动的路径作为其变量,但是结果还是不行。最后,我认为可能是版本的驱动问题,然后我就下载了不同的版本去实验,结果,还是失败了。下面是我的连接My SQL数据库代码,数据库名,表名,数据库密码是没错的,我核对了很多次了。我用的My SQL版本是5.5,而驱动是5.1.35</code>

try{
Connection con=null;
Statement stmt=null;
ResultSet rs=null;
Class.forName("com.mysql.jdbc.Driver");
String url="jdbc:mysql://localhost:3306/student?useUnicode=true&characterEncoding=gbk";
con=DriverManager.getConnection(url,"root","95421");
stmt=con.createStatement();
String sql="select * from sinfo";
while(rs.next()){
%>






rs.close();
stmt.close();
con.close();
}
catch (Exception ex)
{
out.println("Error : " + ex.toString());
}
运行结果:
%>
图片说明

My SQL驱动显示已经导入:

图片说明

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn