res = stat.executeQuery("select st_date from tmp1 where Name = '"
+ tname.getText() + "'");
while (res.next()) {
System.out.println(res.getDate(1));
int i = 0;
while (i < 14) {
statement.executeUpdate("Insert into datetab values(DATE_ADD('"
+ res.getDate("st_date") + "',INTERVAL 1 DAY),'" + tempname + "')");
i = i + 1;
}
}
All the updates in datetab table occurs, but there is a problem. I will explain the problem with an example.
If the date from tmp1 table is 28-12-2000 then after executing the insert query with date_add(), what happens is that 13 new inserts are happening, but all those inserts are 29-12-2000.