mysql resultset_让java从Mysql返回多个ResultSet

@Test

public void test01() throws SQLException, ClassNotFoundException {

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

String DBURL = "jdbc:mysql://localhost:3306/bookstore?allowMultiQueries=true";

String DBUSER = "root";

String DBPASS = "root";

Connection conn = null;

Class.forName(DBDRIVER);

conn = DriverManager.getConnection(DBURL, DBUSER, DBPASS);

System.out.println(conn);

String sql = "SELECT * FROM category;"

+"SELECT * FROM user;" ;

Statement stmt = conn.createStatement();

boolean isResultSet = stmt.execute(sql);

ResultSet rs = null;

int count = 0;

while(true) {

if(isResultSet) {

rs = stmt.getResultSet();

while(rs.next()) {

System.out.println(rs.getString(1));

}

rs.close();

} else {

if(stmt.getUpdateCount() == -1) {

break;

}

System.out.printf("Result {} is just a count: {}", count, stmt.getUpdateCount());

}

count ++;

isResultSet = stmt.getMoreResults();

}

stmt.close();

conn.close();

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java 实现 Mysql 数据同步可以通过以下步骤实现: 1. 连接源数据库和目标数据库,获取连接对象; 2. 查询源数据库中需要同步的数据; 3. 将查询结果写入到目标数据库中; 4. 关闭连接对象。 具体的实现过程可以参考以下代码: ``` import java.sql.*; public class MysqlSync { public static void main(String[] args) { Connection sourceConn = null; Connection targetConn = null; Statement sourceStmt = null; Statement targetStmt = null; ResultSet rs = null; try { // 连接源数据库 Class.forName("com.mysql.jdbc.Driver"); sourceConn = DriverManager.getConnection("jdbc:mysql://localhost:3306/source_db", "root", "password"); sourceStmt = sourceConn.createStatement(); // 查询源数据库中需要同步的数据 rs = sourceStmt.executeQuery("SELECT * FROM source_table"); // 连接目标数据库 targetConn = DriverManager.getConnection("jdbc:mysql://localhost:3306/target_db", "root", "password"); targetStmt = targetConn.createStatement(); // 将查询结果写入到目标数据库中 while (rs.next()) { String name = rs.getString("name"); int age = rs.getInt("age"); targetStmt.executeUpdate("INSERT INTO target_table (name, age) VALUES ('" + name + "', " + age + ")"); } } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } finally { // 关闭连接对象 try { if (rs != null) { rs.close(); } if (sourceStmt != null) { sourceStmt.close(); } if (sourceConn != null) { sourceConn.close(); } if (targetStmt != null) { targetStmt.close(); } if (targetConn != null) { targetConn.close(); } } catch (SQLException e) { e.printStackTrace(); } } } } ``` 这段代码是一个简单的示例,实际应用中需要根据具体需求进行改进和优化。同时,需要注意数据库连接的安全性和性能问题。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值