mysql下载要钱吗
在libraries这⾥点击邮编第⼆个“add external jars”,到你当时下载jdbc后把它解压缩存的位置,到MySQL jar打开。
点击apply和apply and close即可
可以看到已经在左边添加成功了
四、接下来⽤程序测试⼀下src——右键new——class——填写name:jdbc,把最下⾯的第⼀个也打钩,然后finish
五、test下的jdbc.java中代码如下:package test;
import java.sql.*;
public class jdbc {
public static void main(String[] args) {
try {
Class.forName("sql.jdbc.Driver");    //加载MYSQL JDBC驱动程序
//Class.forName("sql.Driver");
System.out.println("Success loading Mysql Driver!");
}
catch (Exception e) {
System.out.print("Error loading Mysql Driver!");
e.printStackTrace();
}
try {
Connection connect = Connection(
"jdbc:mysql://localhost:3306/exam","root","root");//后⾯两位参数是你的数据库账号和密码
System.out.println("Success connect Mysql server!");
Statement stmt = ateStatement();
ResultSet rs = uteQuery("select * from user");
/
/user 为你表的名称,可以在MySQL命令⾏⽤show tables;显⽰
while (rs.next()) {
System.out.String("u_name"));
}
}
catch (Exception e) {
System.out.print("get data error!");
e.printStackTrace();
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。