开拓自己

NeverDrop

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  0 随笔 :: 14 文章 :: 0 评论 :: 0 Trackbacks
Statememt
PreparedStatement 都有addBatch方法

Statememt  stmt=conn.createStatement();
stmt.addBatch("insert inti .....");
stmt.addBatch("insert inti .....");
stmt.addBatch("insert inti .....");
stmt.executeBatch();
stmt.close();

PreparedStatement  ps=conn.prepareStatement("insert Into biao values(?,?)");
ps.setInt(1,61);
ps.setInt(2,61);
ps.addBatch()
ps.setInt(1,61);
ps.setInt(2,61);
ps.addBatch()

ps.executeBatch();
ps.close();
posted on 2007-01-02 18:18 诚夏徕 阅读(2293) 评论(0)  编辑  收藏 所属分类: j2ee

只有注册用户登录后才能发表评论。


网站导航: