What is the purpose of setAutoCommit() ?
Answer / shahnawaz sheikh
If AutoCommit is off, then any update or insert operation
perforned on database will not be reflected just after the
query is executed.Though the operation has been
successfully completed.
We will have to commit the transaction manually, to view
the incurred changes.
This also keeps user on the safer side, if some
undesirable row has been inserted,updated or deleted in the
database then it can be rollback.
While if the AutoCommit is on any update,insert or delete
are at once reflected onto the database.
| Is This Answer Correct ? | 13 Yes | 1 No |
Why java is called not pure object oriented language?
can we write two same methods in outer class and innerclass.
What is difference between final and immutable?
What are Transient and Volatile Modifiers?
3 Answers SAP Labs, TUP Manila,
Difference between flush() and commit() in hibernate?
What is multiple inheritance & can we implement it in java?
Can we overload the constructors?
How do you generate random numbers in java?
Is array primitive data type in java?
Why we should declare the variables as static and final in interfaces?
Can we create more than one object singleton class?
what is difference between throw and throws in exception?