欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jdbc批量添加数据

程序员文章站 2022-07-13 13:08:46
...
private static String url="jdbc:mysql://localhost:3306/test2?useUnocode=true&characterEncoding=utf-8";
    private static String username="root";
    private static String password="123456";
    public static void main(String[] args) throws Exception {
        //1 加载驱动
        Class.forName("com.mysql.jdbc.Driver");
        //2 获取连接
        Connection con = DriverManager.getConnection(url,username,password);
        //3 执行sql
        String sql = "insert into student (sname,age) values('白1','18')";
        Statement sm = con.createStatement();
        sm.addBatch(sql);//添加第1条sql语句
        sql = "insert into student (sname,age) values('白2','28')";
        sm.addBatch(sql);//添加第2条sql语句
        //设置?的值.序号从1开始
        //4 执行sql,返回影响的行数
        int[] counts = sm.executeBatch();//只能执行增删改.
        for(int count:counts){
            System.out.println("影响行数:"+count);
        }
        sm.close();
        con.close();
相关标签: Java mysql jdbc