为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用包数据库/ SQL批处理sql语句

如何使用包数据库/ SQL批处理sql语句

Go
杨__羊羊 2021-05-10 09:21:15
如何使用Go的数据库/ SQL包批处理sql语句?在Java中,我会这样:// Create a prepared statementString sql = "INSERT INTO my_table VALUES(?)";PreparedStatement pstmt = connection.prepareStatement(sql);// Insert 10 rows of datafor (int i=0; i<10; i++) {    pstmt.setString(1, ""+i);    pstmt.addBatch();}// Execute the batchint [] updateCounts = pstmt.executeBatch();我将如何在Go中实现相同目标?
查看完整描述

3 回答

  • 3 回答
  • 0 关注
  • 169 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信