JDBC连接数据库

什么是JDBC?

解释:JDBC全称 Java DataBase Connectivity,是使用java语言操作关系型数据库的一套标准接口,可以适应多种关系型数据库,比如oracle和DB2。
一、执行流程:

  • 编写Java代码
  • 将内嵌的SQL发送到MySQL服务端
  • MySQL服务端接收SQL语句并且执行该SQL语句
  • 将SQL语句执行结果返回给Java代码

二、根据执行流程,连接过程为:
1、注册驱动

Class.forname("com.mysql.jdbc.Driver")

2、获取连接

Connection connection=DriverManager.getConnection(url,username,password);

3、定义SQL语句

String sql="select* from xxx";

4、获取执行SQL对象

Statement statement = conn.createStatement();

5、执行SQL

Statement statement=statement.createStatement();

三、涉及到的API
DriverManger:工具类
(1)注册驱动
(2)获取数据库的连接
Statement:

public class Jdbc01 {
    public static void main(String[] args) throws ClassNotFoundException, SQLException {
//1.注册驱动,可以省略不写
        Class.forName("com.mysql.jdbc.Driver");
//2.构建数据库连接对象的参数,url,username,password
        String url="jdbc:mysql:///xxx";
        String username="root";
        String password="root";
//3.获取数据库连接对象
        Connection connection = DriverManager.getConnection(url,username,password);
//4.定义SQL语句
        String sql="update xxx set ordered=1111 where id=1";
//5.获取执行SQL对象,执行SQL
        Statement statement = connection.createStatement();
//6.返回结果集
        int resultSet = statement.executeUpdate(sql);
        System.out.println("受影响的行数"+resultSet);
        statement.close();
        connection.close();
    }
}

Connection:数据库连接对象
(1)获取执行SQL对象

  • 普通执行SQL对象
    Statement createStatement()
  • 预编译SQL的执行SQL对象,防止SQL注入
    PreparedStatement prepareStatement(sql)
  • 执行存储过程对象
    CallableStatement prepareCall(sql)
    (2)管理事务
  • Mysql中对事物进行控制的语句
    事物开启:
BEGIN/START TRANSA;

事物提交:

COMMIT;

事物回滚:

ROLLBACK;
  • 对应JDBC事物管理
    事物开启
setAutoCommit(false|true); true为自动提交事物,false为手动提交事务

事物提交

commit();

事物回滚

rollback();

模拟事物开启,提交以及回滚

public class Jdbc02 {
    public static void main(String[] args) throws ClassNotFoundException, SQLException {
        //jdbc的事务管理,开启、提交、回滚,connection支持对事物的管理
        //mysql是默认提交的事务
            Class.forName("com.mysql.jdbc.Driver");
            String url="jdbc:mysql:///xxx";
            String username="root";
            String pasword="root";
            //获取连接
            Connection connection = DriverManager.getConnection(url,username,pasword);
            //定义sql
            String sql1="update tb_xxx set ordered=1111 where id=1";
            String sql2="update tb_ xxx ordered=1111 where id=2";
            //获取执行SQL的对象
            Statement statement = connection.createStatement();
        try {
            //开启事物,true为自动提交事物,false为手动
            connection.setAutoCommit(false);
            int count1 = statement.executeUpdate(sql1);
            int i=3/0;
            System.out.println("影响的行数"+count1);
            int count2 = statement.executeUpdate(sql2);
            System.out.println("影响的行数"+count2);
            //成功的时候进行事物的提交
            connection.commit();
        } catch (Exception e) {
            e.printStackTrace();
            //失败的时候进行回滚事物
            connection.rollback();
        }finally {
//无论成功还是失败,这里都需要关闭相应的资源
            statement.close();
            connection.close();
        }
    }
}

Statement:
(1)执行sql语句

  • excuteUpdate 返回的是int类型,操作的行数
  • excuteQuery 返回值为结果集
    ResultSet
    (1)获取查询结果,使用游标:返回false,当前行为无效行,没有数据,返回则有效。
    (2)获取数据:getXxx
public class Jdbc03 {
    public static void main(String[] args) throws SQLException {
        String url="jdbc:mysql:///xxx";
        String userName="root";
        String password="root";
        Connection connection = DriverManager.getConnection(url, userName, password);
        String sql="select * from xxx";
        Statement statement = connection.createStatement();
        ResultSet resultSet = statement.executeQuery(sql);
        while (resultSet.next()){
            int id = resultSet.getInt("id");
            String name = resultSet.getString("name");
            System.out.println(id);
            System.out.println(name);
        }
        resultSet.close();
        statement.close();
        connection.close();
    }
}

SQL注入

为什么要使用PreparedStatement?
createStatement存在SQL注入问题,preparedStatement可以预防SQL注入问题
SQL注入:SQL注入是通过操作输入来修改事先定义好的SQL语句,用以达到执行代码对服务器进行攻击的方法。
模拟简单的SQL注入:首先新建一张sql表,只有username和password就行,随意插入两条数据。

public class Jdbc04 {
    //模拟SQL注入问题
    public static void main(String[] args) throws SQLException {
       String url="jdbc:mysql:///xxx";
        String username="root";
        String password="root";
        Connection connection = DriverManager.getConnection(url,username,password);
        //模拟登陆,接收到账号和密码
        String name="张三";
        String pwd="' or  '1'='1 ";
        //定义SQL
        String sql="select * from tb_user where username='"+name+"' and password='"+pwd+"'";
        Statement statement = connection.createStatement();
        ResultSet resultSet = statement.executeQuery(sql);
        //判断是否登陆成功
        if (resultSet.next()){
            System.out.println("登陆成功");
            System.out.println(sql);
        }else {
            System.out.println("登录失败");
        }
        //释放资源
        resultSet.close();
        statement.close();
        connection.close();

    }
}

结果是登录成功,因为or 1=1恒成立,SQL语句是这样的:

select * from tb_user where username='张三' and password='' or  '1'='1 '

preparedStatement的使用:
(1)获取preparedStatement对象
(2)设置参数值
(3)执行SQL

public class Jdbc05 {
       @Test
    public void jdbcPrepareStatement() throws SQLException {
         String url="jdbc:mysql:///xxx";
        String username = "root";
        String password = "root";
        Connection connection = DriverManager.getConnection(url, username, password);

        String name="张三";
        String pwd="' or  '1'='1 ";
        String sql="select * from tb_user where username=? and password=?";
        PreparedStatement preparedStatement = connection.prepareStatement(sql);
        preparedStatement.setString(1,name);
        preparedStatement.setString(2,pwd);
        ResultSet resultSet = preparedStatement.executeQuery();

        if (resultSet.next()){
            System.out.println("登陆成功!");
        }  else{
               System.out.println("登录失败!");
           }
        resultSet.close();
        preparedStatement.close();
        connection.close();
       }
}

总结:preparedStatement的性能更好,而且将敏感字符进行转义。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容