What is the difference between Resultset and Rowset.
Answer Posted / anand g
A resultset maintains a connection to the database.
A rowset can be disconnected once it is populated with data
from the table.
resultset is not serializable
rowset is a serializable version of resultset and also it
extends resultset interface, so all the methods are present
in rowset also.
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
Does it matter in what order catch statements for filenotfoundexception and ioexception are written?
v-model life cycle
Can we overload the main() method?
Is vector ordered in java?
What is the collection interface?
What is difference between arraylist and list in java?
What is the function of http?
What is a variable in java?
What is meant by final class?
Can we have a try block without catch block?
What is the difference between a local variable and an instance variable?
Explain the importance of import keyword in java?
what happens when a thread cannot acquire a lock on an object? : Java thread
Explain java code for recursive solution's base case?
Explain the usage of this with constructors?