zoukankan      html  css  js  c++  java
  • JDBC基本语法

    JDBC基本操作步骤:

    1,加载驱动,建立连接

    2,执行SQL语句

    3,关闭连接

    建立连接:  

    加载驱动

    Class.forName("org.gjt.mm.mysql.Driver");

    建立连接,localhost代表本机,3306是端口,five是数据库名,后面是编码集合数据库密码;
    con=DriverManager.getConnection("jdbc:mysql://localhost:3306/five?characterEncoding=utf-8","root","123456");

    执行SQL语句

    ps=con.prepareStatement(
    "insert into t_product(productName,price,createTime)values(?,?,?)");

    设置占位符:

    ps.setString(1, bean.getProductName());
    ps.setInt(2, bean.getPrice());
    ps.setDate(3, bean.getBirthday());

    更新数据库:

    ps.executeUpdate();

    抽象之后的关闭连接语法:

    try {
    if (re != null) {
    re.close();
    }
    if (ps != null) {
    ps.close();
    }
    if (con != null) {
    con.close();
    }
    } catch (SQLException e) {
    e.printStackTrace();
    }

  • 相关阅读:
    C语言本身并不提供输入输出语句
    大数据
    kdd cup 论文
    决策树比较
    推荐系统
    geohash
    MySQLdb 安装
    天池大数据比赛
    逻辑回归
    矩阵分解
  • 原文地址:https://www.cnblogs.com/cj28-27/p/5469815.html
Copyright © 2011-2022 走看看