Reputation: 37034
I have read this intersting article about rowset
I realized that we have 2 types of RowSet:
JdbcRowset
) JoinRowSet
, CachedRowSet
, FilteredRowSet
and WebRowSet
)I understand difference between these RowSet
types but I have misunderstanding about aims of creation two types of RowSet
. It relates with performance issues?
And after first question answer I want to know why only JdbcRowset
is connected and rest Rowset
inheritors are disconnected.
Upvotes: 0
Views: 192
Reputation: 9
From your source:
1) Disconnected database connected to the database only when they want to read or write, a(...) on the other hand, Connected database keep JDBC connection alive all time.
So why would we waste resources => performance issue.
Upvotes: 1