0
votes
3answers
45 views
pass ResultSet from servlet to JSP
Hi I am doing the following in my SampleServlet.java
//Fill resultset from db
.....
try {
ArrayList Rows = new ArrayList();
while (resultSet.next()){
ArrayList row …
1
vote
2answers
34 views
How to correctly use ResultSet with h:dataTable
Hey there,
The problem is, that after displaying the ResultSet with h:dataTable, the connection is left open. If I close it, it closes the ResultSet too. I'm thinking about copyin …
0
votes
2answers
58 views
Retrieving Multiple Result sets with stored procedure in php/mysqli
I have a stored procedure that has multiple result sets. How do I advance to the 2nd result set in mysqli to get those results?
Let's say it's a stored proc like:
create procedur …
1
vote
5answers
469 views
Convert Java resultset to String array
Hey everyone,
I am writing a program that will query an MS access database, return the query as a result set, and then I want to ultimately convert that result set into a String a …
0
votes
1answer
24 views
Skipping ahead to a specific JDBC Record Number
What is the best way to skip ahead to a specific record number in a Java JDBC resultset?
0
votes
3answers
252 views
How to insert values result set into hashmap without iterating in Java 1.4?
I want to validate a value against values retrieved from a result set's first column. I have to do the same validation operation approximately 1000 times. So, I want to decrease …
0
votes
4answers
396 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 …
0
votes
4answers
95 views
Merging 2 SQL Queries
I've got 2 queries I'd like to merge into 1 result set without using union.
Query 1
select datepart(yy,dateclosed)as 'Year',
datepart(mm,dateclosed) as 'Month',
count(*) …
2
votes
2answers
479 views
How to stub/mock JDBC ResultSet to work both with Java 5 and 6?
Hi,
I'm testing some of my classes working with JDBC statements etc and now I got problem with JDBC ResultSet interface:
The software should run both with Java 5 and Java 6 and h …
0
votes
3answers
92 views
java ResultSet, using MAX sql function
Hello here is what I want, I connect to a DB and retrieve the biggest element of the UniqueId column, and assign it to an integer variable named maxID, here is my approach:
int ma …
1
vote
1answer
85 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 u …
0
votes
1answer
20 views
Help with mysqli_stmt_store_result()
I'm having trouble trying to use $stmt->store_result() after executing a prepared statement. The manual says "Transfers a result set from a prepared statement", but to where?
I wo …
1
vote
2answers
27 views
Unable to close JDBC resources!!!
We are running a websphere commerce site with an oracle DB and facing an issue where we are running out of db connections.
We are using a JDBCHelper singleton for getting the prepa …
0
votes
2answers
51 views
selecting a particular field from a table?
I am using the following SQL query:
Select * from table1 as t1, table2 as t2 where t1.id = t2.col
but my problem is that both the tables have fields with same name, place.
So ho …
5
votes
2answers
178 views
How to select an empty result set?
I'm using a stored procedure in MySQL, with a CASE statement.
In the ELSE clause of the CASE ( equivalent to default: ) I want to select and return an empty result set, thus avoid …
