|
Hi all. The following does insert only 4 records, skipping the first
one. If I don’t use batch, it inserts 5 perfectly. Has anyone seen this problem in the past? Thank you. Kyunam try { _sqlMapClient.startBatch(); for (int i
= 0; i < 5; i++) { _stopDAO.insert(location); } _sqlMapClient.executeBatch(); } catch (final java.sql.SQLException e) { e.printStackTrace(System.out); throw e; } |
- Re: batch skips the first insert? Kyunam Kim
- Re: batch skips the first insert? Clinton Begin

