|
Answer» There are two types of RowSet are there. They are:
- Connected - A connected RowSet OBJECT CONNECTS to the database once and remains connected until the application terminates.
- DISCONNECTED - A disconnected RowSet object connects to the database, executes a query to retrieve the data from the database and then closes the CONNECTION. A program may change the data in a disconnected RowSet while it is disconnected. Modified data can be updated in the database after a disconnected RowSet reestablishes the connection with the database.
There are two types of RowSet are there. They are:
|