Tagged Questions
The cachedrowset tag has no wiki summary.
3
votes
1answer
673 views
Are there any good CachedRowSet implementations other than the proprietary Sun one?
I am investigating using javax.sql.rowset.CachedRowSet in part of my application, however I can only find information on using the proprietary sun implementation com.sun.rowset.CachedRowSetImpl or ...
3
votes
5answers
4k views
How do I check to see if a column name exists in a CachedRowSet?
I am querying data from views that are subject to change. I need to know if the column exists before I do a crs.get*X*().I have found that I can query the metadata like this to see if a column exist ...
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
1answer
98 views
Should we use insertRow() with acceptChanges()?
Here is a sample code in java:
try {
/* create connection */
Connection conn = DriverManager.getConnection(url, username, password);
Statement stmt = ...
1
vote
1answer
900 views
copy resultSet without using cachedRowSet
I 'm trying to close the connection after executing a query. Before, I just create a CacheRowSetImpl instance and it will take care of release the resources for me. However, I am using hive database ...
0
votes
1answer
153 views
How to use cachedRowSet to duplicate a ResultSet
I need help with duplicating a resultSet using cashedRowSet or any other way possible. i'm at this point
ResultSet rs = stmt.executeQuery(query);
CachedRowSetImpl crs = new CachedRowSetImpl();
...
0
votes
0answers
76 views
CachedRowSet returns null values
I am creating a JSP page where I connect the page to a database using an odbc connection. When I check connection was successful. Also, I tried the query it returns correct values. I also tried ...
0
votes
0answers
453 views
JSF datatable does not update when deleting first line
I am working on making a jsf datatable backed by a database. I am currently using a CachedRowSet to provide data. A command link allows the user to delete a line in the CachedRowSet by calling a ...
0
votes
2answers
126 views
Google web toolkit doesn't work with CachedRowSet
I'm trying to creating a web app using GWT. In my application, I use MySQL as database. I tried to use a connection pool to control the number of connections to the database. However, Google web ...
0
votes
2answers
1k views
Does CachedRowSet work with all ResultSet implementations?
I'm trying to implement a database paging solution (forward only required) using a CachedRowSet to page an AS400JDBCResultSet containing the results of my query.
I've tried using the
CachedRowSet ...
0
votes
1answer
88 views
Strange behaviour when accessing Oracle 8i table from servlet
First a little background, I'm using jdk 1.6. I've got a 2 column table in an Oracle 8i DB that holds a very simple code to word map. There are no strange characters. Both columns are varchar.
From ...