mirror of
https://github.com/rasilon/ujetl.git
synced 2026-04-11 10:29:29 +00:00
Fix row count order
This commit is contained in:
parent
f945a48c28
commit
6ba081b625
1 changed files with 5 additions and 1 deletions
|
|
@ -149,7 +149,11 @@ public class Job extends Thread {
|
||||||
if(rowNum % nRowsToLog == 0) {
|
if(rowNum % nRowsToLog == 0) {
|
||||||
rowsInserted += arraySum(insertStatement.executeBatch());
|
rowsInserted += arraySum(insertStatement.executeBatch());
|
||||||
dConn.commit();
|
dConn.commit();
|
||||||
log.info(String.format("%s - Inserted %s of %s notified rows into %s so far",jobName,rowNum,rowsInserted,name));
|
log.info(String.format("%s - Inserted %s of %s notified rows into %s so far",
|
||||||
|
jobName,
|
||||||
|
rowsInserted,
|
||||||
|
rowNum,
|
||||||
|
name));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue