Tagged Questions

2
votes
1answer
303 views

JDBC Resultset vs Rowset which one to choose and when?

So I'm aware of some relative differences i.e., the ResultSet has an 'open connection' to the database whereas a RowSet works in a 'disconnected' fashion. But that's pretty much what I understand ...
2
votes
2answers
129 views

Updating RowSet if table content is changed?

Is it possible to update/refresh a RowSet's in case the table content is changed (for e.g. another application modifies it)? So this way I 'always' have an up-to-date version of the table. I looked ...
1
vote
2answers
582 views

About the JDBC RowSet

i know about what a RowSet is and all; what i would like to know is if it works properly and is accepted already, or if it still has it's bugs and isn't as widely accepted as the classic ResultSet. it ...
1
vote
1answer
188 views

Can RowSets be used with PreparedStatements?

I have just found RowSets for database querying with JDBC. They are stateless and cacheable, they look to be superior to ResultSets. Can PreparedStatements be used with them though? PreparedStatements ...
0
votes
0answers
15 views

How to handle empty RowSet when using JoinRowSet

I am trying to join two RowSets using JoinRowSet. (there is no way to do the join in SQL in my special case which I will not go into details). JoinRowSet jrs = new JoinRowSetImpl(); CachedRowSet ...
0
votes
0answers
79 views

RowSet as backing data source for BeansBinding

Question: Is there a way to use a RowSet as the source data for BeansBinding? Details: I would like to use the new BeansBinding support in JFormDesigner 5, based on JSR 295 using the JDesktop.org ...
0
votes
1answer
215 views

can't update JDBC RowSet with Oracle Database

I need to update some rows in a RowSet, but when I'm trying to do that I get an not updateable Exception. Why? JdbcRowSet rs = new oracle.jdbc.rowset.OracleJDBCRowSet(con); rs.setCommand("SELECT ...
0
votes
1answer
76 views

createJdbcRowSet source code

I'm studying how to create an implementation of a JdbcRowSet with the new API provided with JDBC 4.1 RowSetFactory rf = RowSetProvider.newFactory(); JdbcRowSet jdbcrs = rf.createJdbcRowSet(); I ...