Java Database Connectivity:Java访问数据库的解决方案
JDBC定义了一套标准接口,即访问数据库的通用API, 不同的数据库厂商根据各自数据库的特点去实现这些接口。
JDBC希望用相同的方式访问不同的数据库,让具体的数据库操作与数据库厂商实现无关,从而在不同数据库之间轻易的进行切换。
下载对应的数据库的驱动 mysql-connector-java-5.0.4-bin.jar
将驱动类加载到项目中 Eclipse: Build Path
一、连接数据库
//1.加载驱动 -- 反射的方式加载mysql驱动类Class.forName("com.mysql.cj.jdbc.Driver");//2.获取连接对象//URL 协议 地址:端口 资源String url="jdbc:mysql://localhost:3306/example?serverTimezone=GMT&useSSL=false";String user="root";String pwd="password";Connection conn=DriverManager.getConnection(url,user,pwd);//3.释放资源conn.close();
二、数据增添操作
// 执行sql语句Statement statm=conn.createStatement();String sql="insert into student(sname,ssex,birthday,classid) values('rose','女','2010-1-1',1)";int ret=statm.executeUpdate(sql);//逻辑if(ret>0) {System.out.println("添加成功");}else {System.out.println("添加失败");}
三、数据删除操作
//执行sqlStatement statm=conn.createStatement();String sql="delete from student where sid='18'";int ret=statm.executeUpdate(sql);if(ret>0) {System.out.println("修改成功");}else {System.out.println("修改失败");}
四、数据修改操作
//执行sqlStatement statm=conn.createStatement();System.out.println("请输入学生的姓名");String sname=input.next();System.out.println("请输入学生的生日");String birthday=input.next();System.out.println("请输入学生的性别");String ssex=input.next();System.out.println("请输入学生的新班级");String classid=input.next();System.out.println("请输入学生的学号");String sid=input.next();String sql="update student set sname='"+sname+"',birthday='"+birthday+"',ssex='"+ssex+"',classid="+classid+" where sid="+sid;int ret=statm.executeUpdate(sql);if(ret>0) {System.out.println("修改成功");}else {System.out.println("修改失败");}
五、数据查找操作
//执行sql语句Statement statm=conn.createStatement();//String sql="select * from student";String sql="select sid,sname,classid,birthday,ssex from student";ResultSet rs=statm.executeQuery(sql);//解析结果集while(rs.next()) {int sid=rs.getInt("sid");String sname=rs.getString("sname");Date bir=rs.getDate("birthday");String sex=rs.getString("ssex");int classid=rs.getInt("classid");System.out.println(sid+sname+bir+sex+classid);}