Answer Posted / 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 |
Post New Answer View All Answers
What is toarray method in java?
When we serialize an object does the serialization mechanism saves its references too?
which one is more efficient int x; 1. if(x==null) 2.if(null==x) state which one either 1 or 2?
What is the difference between actual and formal parameters?
What is a lightweight component?
What is hashset in java?
How many types of memory areas are allocated by JVM in java?
What isan abstract class and when do you use it?
explain multi-threading in java?
Give differences between Quicksort & Mergesort. When should these sorts be used and what is their running time?
How are java objects passed to a method and what are native methods?
Differentiate between nested and inner class in java.
What is the main purpose of java?
What are parameters in a method?
What are the advantages of encapsulation in java?