Tagged Questions

3
votes
1answer
91 views

How do I place an IN parameter with a LIKE with a RowSet?

I have fighting to get a IN parameter to work inside of a LIKE statement now for hours! I am using a CachedRowSet, which I understand should follow the same rules as a PreparedStatement. Here is the ...
2
votes
1answer
302 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
1answer
42 views

rowset.jar WAS 5.1problem in WAS 6.1

currently I'm running my application under WAS 5.1 with rowset.jar working fine, but when upgrade server to 6.1, getting error with rowset.jar as below java.lang.UnsupportedClassVersionError: ...
0
votes
1answer
79 views

Is there any way to make a Java ResultSet/RowSet update when there are external database updates?

I have a Java Db database table that I use to display results in JFreeChart. There are two processes: updates the table every 30 seconds with data obtained from a temperature sensor creates a ...
0
votes
1answer
127 views

MBO ResultSet Filters - JDBC Driver

I am attempting to combine two disparate data sources into one MBO. The sybase documentation states that you have to develop a custom result set filter in java. Ok. No big deal. I am somewhat familiar ...
0
votes
0answers
78 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
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 ...
0
votes
1answer
107 views

Commit certain number of records to DB with java

I have table in DB,e.g. TableOne. By some rules i should commit N records from this table to other tables. Is it possible to do with jdbc or ResultSet or CachedRowSet? Preliminary flow, as i see: 1. ...