zoukankan      html  css  js  c++  java
  • JDBC简单范例

    连接工具类

    import java.sql.Connection;
    import java.sql.DriverManager;
    
    public class DBUtil {
        // 建立连接方法
        public static Connection open() {
            try {
                Class.forName("com.mysql.jdbc.Driver");
                return DriverManager.getConnection(
                        "jdbc:mysql://localhost:3306/GeekDB", "root", "123456");
            } catch (Exception e) {
                e.printStackTrace();
            }
            return null;
        }
    
        // 关闭连接方法
        public static void close(Connection conn) {
            if (conn != null) {
                try {
                    conn.close();
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
    
        }
    
    }

    使用范例

    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.Statement;
    
    public class Test {
    
        public static void main(String[] args) {
    
            Connection conn = null;
            String sql = null;
            Statement stmt = null;
            PreparedStatement pstmt = null;
            ResultSet rs = null;
    
            // Statement查询*
            sql = "select * from customertbl";
            conn = DBUtil.open();
            try {
                stmt = conn.createStatement();
                rs = stmt.executeQuery(sql);
                while (rs.next()) {
                    int id = rs.getInt(1);
                    String name = rs.getString(2);
                    String email = rs.getString(3);
                    System.out.println(id + " " + name + " " + email);
                }
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                DBUtil.close(conn);
                System.out.println("-----DONE-----");
            }
    
            // PreparedStatement插入一条
            sql = "insert into customertbl (name, email) values (?, ?)";
            conn = DBUtil.open();
            try {
                pstmt = conn.prepareStatement(sql);
                pstmt.setString(1, "Amy");
                pstmt.setString(2, "amy@163.com");
                pstmt.executeUpdate();
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                DBUtil.close(conn);
                System.out.println("-----DONE-----");
            }
    
        }
    }
  • 相关阅读:
    前沿科技相关
    52ABP
    C#常用及注意点
    电商秒杀系统:电商微服务框架组件
    面向对象OOP
    《CLR via C#》书籍
    .NET发布时选择【独立部署模式】引发的故事
    unity 3D物体使用EventSystem响应事件
    协程
    unity 2d碰撞/ui组件碰撞
  • 原文地址:https://www.cnblogs.com/yangleda/p/4224791.html
Copyright © 2011-2022 走看看