本篇文章给大家带来的内容是详解什么是jdbc?jdbc是如何使用的?。有一定的参考价值,有需要的朋友可以参考一下,希望对你们有所助。
什么是jdbc
jdbc(java database connectivity),即java数据库连接,是一种用于执行sql语句的java api,可以为多种关系数据库提供同一访问,它由一组用java语言编写的类和接口组成。jdbc提供了一种基准,根据这种基准可以构建更高级的工具和接口,使数据库开发人员能够编写数据库应用程序。总而言之,jdbc做了三件事:
与数据库建立连接
发送操作数据库的语句
处理结果
jdbc简单示例
下面的代码演示了如何利用jdbc从数据库中查询若干条符合要求的数据出来,使用的数据库是mysql。
1、建立一个数据库和一张表,我的习惯是在classpath底下建立一个.sql的文件用于存放sql语句
create database school;use school;create table student( studentid int primary key auto_increment not null, studentname varchar(10) not null, studentage int, studentphone varchar(15))insert into student values(null,'betty', '20', '00000000');insert into student values(null,'jerry', '18', '11111111');insert into student values(null,'betty', '21', '22222222');insert into student values(null,'steve', '27', '33333333');insert into student values(null,'james', '22', '44444444');commit;
2、建立一个.properties文件用于存储mysql连接的几个属性。为什么要建立.properties而不在代码里面写死,由于这个并不是java设计模式的分类,就不细讲了,只需要记住:从设计的角度看,把内容写在配置文件中永远好过把内容写死在代码中。
mysqlpackage=com.mysql.jdbc.drivermysqlurl=jdbc:mysql://localhost:3306/school?useunicode=true&characterencoding=utf-8mysqlname=rootmysqlpassword=root
3、根据表字段建立实体类
public class student{ private int studentid; private string studentname; private int studentage; private string studentphone; public student(int studentid, string studentname, int studentage, string studentphone) { this.studentid = studentid; this.studentname = studentname; this.studentage = studentage; this.studentphone = studentphone; } public int getstudentid() { return studentid; } public string getstudentname() { return studentname; } public int getstudentage() { return studentage; } public string getstudentphone() { return studentphone; } public string tostring() { return studentid = + studentid + , studentname = + studentname + , studentage = + studentage + , studentphone = + studentphone; }}
4、写一个dbconnection类专门用于向外提供数据库连接。我这里用了mysql,所以只有一个mysqlconnection,如果还用到了oracle,当然还可以向外提供一个oracleconnection。把这些连接设为全局的可能有人会想是否会有线程安全问题,这是一个很好的问题。那因为我们只从connection里面读取一个preparedstatement出来,而不会去写它,只读不修改,是不会引发线程安全问题的。另外把connection设置为static的保证了connection在内存中只有一份,不会占多大资源,每次使用完不调用close()方法去关闭它也没事。
public class dbconnection{ private static properties properties = new properties(); static { /** 要从classpath下取.properties文件,因此要加/ */ inputstream is = dbconnection.class.getresourceasstream(/db.properties); try { properties.load(is); } catch (ioexception e) { e.printstacktrace(); } } /** 这个mysqlconnection只是为了用来从里面读一个preparedstatement,不会往里面写数据,因此没有线程安全问题,可以作为一个全局变量 */ public static connection mysqlconnection = getconnection(); public static connection getconnection() { connection con = null; try { class.forname((string)properties.getproperty(mysqlpackage)); con = drivermanager.getconnection((string)properties.getproperty(mysqlurl), (string)properties.getproperty(mysqlname), (string)properties.getproperty(mysqlpassword)); } catch (classnotfoundexception e) { e.printstacktrace(); } catch (sqlexception e) { e.printstacktrace(); } return con; }}
5、建立一个工具类,用来写各种方法,专门和数据库进行交互。这种工具类最好搞成单例的,这样就不用每次去new出来了(实际上new出来也没看出来会有什么好处),节省资源
package com.xrq.test11;import java.sql.connection;import java.sql.preparedstatement;import java.sql.resultset;import java.util.arraylist;import java.util.list;public class studentmanager{ private static studentmanager instance = new studentmanager(); private studentmanager() { } public static studentmanager getinstance() { return instance; } public list<student> querysomestudents(string studentname) throws exception { list<student> studentlist = new arraylist<student>(); connection connection = dbconnection.mysqlconnection; preparedstatement ps = connection.preparestatement(select * from student where studentname = ?); ps.setstring(1, studentname); resultset rs = ps.executequery(); student student = null; while (rs.next()) { student = new student(rs.getint(1), rs.getstring(2), rs.getint(3), rs.getstring(4)); studentlist.add(student); } ps.close(); rs.close(); return studentlist; }}
6、写个main函数去调用一下
list<student> studentlist = studentmanager.getinstance().querysomestudents(betty);for (student student : studentlist) { system.out.println(student);}
7、看一下运行结果,和数据库里面的一样,成功
studentid = 1, studentname = betty, studentage = 20, studentphone = 00000000studentid = 3, studentname = betty, studentage = 21, studentphone = 22222222
为什么要使用占位符?
看一下第5点,大家一定注意到了,写sql语句的时候用了?占位符,当然有美化代码的因素,不用占位符就要在括号里写+来拼接参数,如果要拼接的参数一多,代码肯定不好看,可读性不强。但是除了这个原因,还有另外一个重要的原因,就是避免一个安全问题。假设我们不用占位符写sql语句,那querysomestudents(string name) throws exception方法就要这么写:
public list<student> querysomestudents(string studentname) throws exception{ list<student> studentlist = new arraylist<student>(); connection connection = dbconnection.mysqlconnection; preparedstatement ps = connection.preparestatement(select * from student where studentname = ' + studentname + '); resultset rs = ps.executequery(); student student = null; while (rs.next()) { student = new student(rs.getint(1), rs.getstring(2), rs.getint(3), rs.getstring(4)); studentlist.add(student); } ps.close(); rs.close(); return studentlist;}
上面的main函数一样可以获取到两条数据,但是问题来了,如果我这么调用呢:
public static void main(string[] args) throws exception { list<student> studentlist = new arraylist<student>(); studentlist = studentmanager.getinstance().querysomestudents(' or '1' = '1); for (student student : studentlist) system.out.println(student); }
看下运行结果:
studentid = 1, studentname = betty, studentage = 20, studentphone = 00000000studentid = 2, studentname = jerry, studentage = 18, studentphone = 11111111studentid = 3, studentname = betty, studentage = 21, studentphone = 22222222studentid = 4, studentname = steve, studentage = 27, studentphone = 33333333studentid = 5, studentname = james, studentage = 22, studentphone = 44444444
为什么?看下拼接之后的sql语句就知道了:
select * from student where studentname = '' or '1' = '1'
'1'='1'永远成立,所以前面的查询条件是什么都没用。这种问题是有应用场景的,不是随便写一下。java越来越多的用在web上,既然是web,那么查询的时候有一种情况就是用户输入一个条件,后台获取到查询条件,拼接sql语句查数据库,有经验的用户完全可以输入一个‘'' or '1' = '1,这样就拿到了库里面的所有数据了。
statement 和 preparedstatement之间的关系和区别.
关系:preparedstatement继承自statement,都是接口
区别:preparedstatement可以使用占位符,是预编译的,批处理比statement效率高
jdbc事务
什么是事务:事务就是操作一组数据库的操作集合。如果一组处理步骤或者全部发生或者一步也不执行,我们称改组处理为一个事务。
事务的基本特性:原子性,一致性,隔离性,持久性。
原子性: 原子性是指事务是一个不可再分割的工作单元,事务中的操作要么都发生,要么都不发生。
一致性:一致性是指在事务开始之前和事务结束以后,数据库的完整性约束没有被破坏。这是说数据库事务不能破坏关系数据的完整性以及业务逻辑上的一致性。
如a给b转账,不论转账的事务操作是否成功,其两者的存款总额不变。
隔离性:多个事务并发访问时,事务之间是隔离的,一个事务不应该影响其它事务运行效果。
在并发环境中,当不同的事务同时操纵相同的数据时,每个事务都有各自的完整数据空间。由并发事务所做的修改必须与任何其他并发事务所做的修改隔离。事务查看数据更新时,数据所处的状态要么是另一事务修改它之前的状态,要么是另一事务修改它之后的状态,事务不会查看到中间状态的数据。
事务最复杂问题都是由事务隔离性引起的。完全的隔离性是不现实的,完全的隔离性要求数据库同一时间只执行一条事务,这样会严重影响性能。
持久性:意味着在事务完成以后,该事务所对数据库所作的更改便持久的保存在数据库之中,并不会被回滚。
总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。更多相关教程请访问java视频教程,java开发图文教程,bootstrap视频教程!
以上就是详解什么是jdbc?jdbc是如何使用的?的详细内容。