JDBC快速入门

本质:定义了一套操作所有关系型数据库的规则(接口)
    步骤:
    1,导入驱动jar包
          *复制mysql-connector-java-5.1.37-bin.jar到项目的libs文件夹下
          *右键 Add As Library
    2,注册驱动
    3,获取数据库连接对象 Connection
    4,定义sql
    5,获取执行sql语句对象 Statement
    6,  执行sql,接收返回结果
    7,处理结果
    8,释放资源

 public class Demo01 {
          public static void main(String[] args) throws ClassNotFoundException, SQLException {
        //导入jar包
        //注册驱动
        Class.forName("com.mysql.jdbc.Driver");
        //获取数据库连接对象;
        Connection connection =  DriverManager.getConnection("jdbc:mysql://localhost:3306/db1", "root", "root");
        //定义SQL语句
        String sql="update emp set dept_id=10 where id=1004";
        //获取执行SQL对象 Statement
        Statement statement = connection.createStatement();
        //执行SQL
        int i = statement.executeUpdate(sql);
        System.out.println(i);
        //释放资源
        statement.close();
        connection.close();
         }
     }

上一篇:控制流程总结


下一篇:mysql中的jdbc