java方法里执行两条sql_Java如何在数据库上执行多个SQL命令?

在Java编程中,如何同时在数据库上执行多个SQL命令?假定数据库名称是:testdb,其中有两张表:employee和dept,employee表中有4条记录,dept表中有2条记录。

创建数据库表的语句 -

use testdb;

-- 员工表

drop table if exists employees;

create table if not exists employees (

id int not null primary key,

age int not null,

name varchar(64),

dept_id int(10)

);

INSERT INTO employees VALUES (100, 28, 'MaxSu', 1);

INSERT INTO employees VALUES (101, 25, 'WeiWang', 2);

INSERT INTO employees VALUES (102, 30, 'KidaSu', 2);

INSERT INTO employees VALUES (103, 28, 'KobeBryant', 1);

----

-- 部门表

drop table if exists dept;

create table if not exists dept (

id int not null primary key,

name varchar (64)

);

INSERT INTO dept VALUES (1, '技术部');

INSERT INTO dept VALUES (2, '市场部');

以下示例中演示如何使用addBatch()和executeBatch()方法同时执行多个SQL命令。

package com.yiibai;

import java.sql.*;

public class ExecuteMultipleSQLStatements {

public static void main(String[] args) throws Exception {

String JDBC_DRIVER = "com.mysql.jdbc.Driver";

String DB_URL = "jdbc:mysql://localhost/testdb?useSSL=false";

String User = "root";

String Passwd = "123456";

try {

Class.forName(JDBC_DRIVER);

} catch (ClassNotFoundException e) {

System.out.println("Class not found " + e);

}

Connection con = DriverManager.getConnection(DB_URL, User, Passwd);

Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);

String insertEmp1 = "insert into employees(id,name,age,dept_id) values(110,'Jay',19, 1)";

String insertEmp2 = "insert into employees(id,name,age,dept_id) values(111,'Weiwei',22,2)";

String insertEmp3 = "insert into employees(id,name,age,dept_id) values(112,'Hkou',25,3)";

con.setAutoCommit(false);

stmt.addBatch(insertEmp1);

stmt.addBatch(insertEmp2);

stmt.addBatch(insertEmp3);

ResultSet rs = stmt.executeQuery("select * from employees");

rs.last();

System.out.println("rows before batch execution= " + rs.getRow());

stmt.executeBatch();

con.commit();

System.out.println("Batch executed");

rs = stmt.executeQuery("select * from employees");

rs.last();

System.out.println("rows after batch execution = " + rs.getRow());

}

}

上述代码示例将产生以下结果。

rows before batch execution= 4

Batch executed

rows after batch execution = 7

注:如果JDBC驱动程序安装不正确,将获得ClassNotfound异常。

Class not found java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

JDBC Class found

SQL exception occuredjava.sql.SQLException: No suitable driver found for jdbc:mysql://localhost/testdb

¥ 我要打赏

纠错/补充

收藏

加QQ群啦,易百教程官方技术学习群

注意:建议每个人选自己的技术方向加群,同一个QQ最多限加 3 个群。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值