Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.