Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
1answer
183 views

Do I need to use T-SQL Rowset?

So I'm trying to convert a web service that was an Oracle application to T-SQL. The fun part is I only have the web service code and no database code at all. I see there is an input parameter that ...
1
vote
1answer
609 views

Zend database query result converts column values to null

I am using the next instructions to get some registers from my Database. Create the needed models (from the params module): $obj_paramtype_model = new Params_Model_DbTable_Paramtype(); ...
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
2answers
27 views

XML rowset and MsXML2

I have a rowset coming back using the Microsoft rowset schema from my stock control system. However when using msxml2 to read the document I don't seem to be able to access the data (Written in ...
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
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 ...
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. ...
0
votes
2answers
71 views

CLR SQL Server 2005 procedure to take stored procedure results as a parameter

I have a stored procedure that returns a rowset that I'd like to pass into a CLR stored procedure to do some advanced calculations. How would I set this up? Take the input? Iterate the rowset within ...
0
votes
1answer
154 views

SQL Server OLE DB - select data from DB using RowSet

I want to ask how to select data from DB using OLE DB CRowSet in C++. How to access specific row, specific column etc. like in ADO .NET using DataTable. Can you give me some tutorial please? Thanks