美文网首页
JDBC概述

JDBC概述

作者: 月影追猎者 | 来源:发表于2020-02-18 21:36 被阅读0次

    JDBC(Java DataBase Connectivity),Java数据库连接,是一个用于数据库访问的应用程序API,由一组用Java语言编写的类和接口组成,有了JDBC就可以用同一的语法对多种关系数据库进行访问,而不用担心其数据库操作语言的差异。


    JDBC

    JDBC结构划分为两层:JDBC Driver Interface(驱动程序管理器接口)与JDBC API

    JDBC核心类库包含在java.sql包中。

    DriverManager:负责管理JDBC驱动程序。使用JDBC驱动程序之前,必须先将驱动程序加载并注册后才可以使用,同时提供方法来建立与数据库的连接。
    SQLException:有关数据库操作的异常
    接口
    Connection:特定数据库的连接(会话)。在连接上下文中执行SQL语句并返回结果。
    PreparedStatement:表示预编译的 SQL 语句的对象。
    Statement:用于执行静态 SQL 语句并返回它所生成结果的对象。
    ResultSet:表示数据库结果集的数据表,通常通过执行查询数据库的语句生成 。
    CallableStatement:用于执行 SQL 存储过程的接口。

    创建JDBC应用步骤

    1. 载入JDBC驱动程序
      Class类中提供加载驱动程序的方法:
    public static Class forName(String className) throws ClassNotFoundException
    

    className表示类的描述符的字符串

    1. 定义连接URL
    2. 建立连接
      DriverManager类提供getConnection方法可获得指定数据库的连接对象:
    public static Connection getConnection(String url, String userName, String password) throws SQLException
    
    1. 创建Statement对象
      Connection接口中提供可获得 Statement 对象的方法:
    Statement createStatement() throws SQLException
    

    可调用重载的createStatement方法,可指定参数,设置数据库操作结果的相关属性。
    PreparedStatement接口是Statement接口的子接口,允许使用不同的参数多次执行相同的SQL语句。
    Connection接口提供创建PreparedStatement对象的方法,可指定SQL语句:

    PreparedStatement prepareStatement(String sql) throws SQLException
    

    PreparedStatement接口优点:可动态设置参数、增加了预编译功能、提高执行速度。

    1. 执行查询或更新
      Statement接口提供可执行 SQL 命令的方法:
    boolean execute(String sql) throws SQLException
    
    ResultSet executeQuery(String sql) throws SQLException
    
    int executeUpdate(String sql) throws SQLException
    
    1. 结果处理
      ResultSet接口提供可对结果集进行操作的方法:
      移动结果集操作指针
    boolean next() throws SQLException
    

    指定数据类型根据传入列的名字获取指定列的值

    X getX(String columnName) throws SQLException
    

    指定数据类型根据传入列的编号获取指定列的值

    X getX(column) throws SQLException
    
    1. 关闭连接
      关闭操作对象及连接,可调用接口ResultSet、Statement、Connection 中的关闭方法,立即释放数据库和 JDBC 相关资源:
    void close() throws SQLException
    

    相关文章

      网友评论

          本文标题:JDBC概述

          本文链接:https://www.haomeiwen.com/subject/nivnfhtx.html