Tagged Questions
A result set is a set of rows from a database, which is usually generated by executing a statement that queries the database. A resultSet object maintains a cursor pointing to its current row of data.
18
votes
2answers
25k views
How do I get the size of a java.sql.ResultSet?
Shouldn't this be a pretty straightforward operation? However, I there is no size() or length() method.
14
votes
6answers
9k views
Checking for a null int value from a Java ResultSet
In Java I'm trying to test for a null value, from a ResultSet, where the column is being cast to a primitive int type.
int iVal;
ResultSet rs = magicallyAppearingStmt.executeQuery(query);
if ...
8
votes
3answers
3k 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 avoiding to throw an SQL ...
8
votes
6answers
15k views
Fastest way to write huge data in text file Java
I have to write huge data in text[csv] file. I used BufferedWriter to write the data and it took around 40 secs to write 174 mb of data. Is this the fastest speed java can offer?
bufferedWriter = new ...
7
votes
5answers
2k views
How to judge whether selected result is empty or not with jQuery?
$("#experiences tr")
For the above one,how to judge if it's empty or not?
I thought its boolean value should be false,but seems not.
6
votes
2answers
1k views
Fetch Oracle table type from stored procedure using JDBC
I'm trying to understand different ways of getting table data from Oracle stored procedures / functions using JDBC. The six ways are the following ones:
procedure returning a schema-level table type ...
6
votes
2answers
641 views
Can JPA return results as a map?
We are currently build a map manually based on the two fields a named query returns, because JPA only provides a getResultList().
@NamedQuery{name="myQuery",query="select c.name, c.number from Client ...
6
votes
2answers
116 views
Can I build a resultset from a file in Java?
I don't have much experience working with resultsets, but as ResultSet is an interface, I guess I could implement it to work with a file as a backend. Is this nonsense? Is there any solution already ...
6
votes
3answers
21k views
How can I retrieve a JDBC ResultSet as an ArrayList?
I'm doing a query to retrieve a large amount of IDs (integers). Instead of iterating millions of times through the ResultSet and copying everything one-by-one to an ArrayList, is there some way to ...
6
votes
4answers
8k views
How do I get the row count in JDBC?
I've executed a JDBC query to obtain a resultset. Before iterating over it, I'd like to quickly find out how many rows were returned. How can I do this with high performance?
I'm using Java 6, Oracle ...
5
votes
3answers
2k views
How to return resultset from web service in java
i am writing an application in which i am creating web services. i am creating an operation(method) which retrieves database table values from database table in resultset. Hence we can't return ...
5
votes
2answers
226 views
When accessing ResultSets in JDBC, is there an elegant way to distinguish between nulls and actual zero values?
When using JDBC and accessing primitive types via a result set, is there a more elegant way to deal with the null/0 than the following:
int myInt = rs.getInt(columnNumber)
if(rs.wasNull())?
{
// ...
5
votes
3answers
2k views
How can I get the column name of the primary key of a Database Table from the ResultSet or ResultSetMetaData object in JAVA?
I am writing a Java Application. I have got a ResultSet. Now I want to find out the coloumn name of the primary key of the table.
Is it possible to get that coloumn name through ResultSet object or ...
5
votes
4answers
3k views
Batch multiple select statements when calling Oracle from ADO.NET
I want to batch multiple select statements to reduce round trips to the database. The code looks something like the pseudo code below. It works perfectly on SQL Server, but does not work on Oracle - ...
4
votes
4answers
305 views
JDBC ResultSet get columns with table alias
Imagine I have a query like
SELECT * from table1 a, table2 b where (WHATEVER)
Maybe both tables have the same column name. So I though it would be nice to access the data via
...
4
votes
4answers
179 views
resultSet.getInt() return value on a string containing two ints
I need to parse the value of a database column that generally contains integers, based on the result Set generated from a JDBC call. However, one particular row of the column has two integers in it ...
4
votes
1answer
68 views
Return multiple results depending on Quantity field
I have the following table of records:
Product | Colour | Quantity
---------------------------------------
Product A | Blue | 1
Product A | Red | 2
...
4
votes
3answers
256 views
Java Using SQL Execute method but being able to access results
Rather than having complex SQL queries, tries, catch and finals everywhere in the code I have a method execute(SQL, up to three inputs) however if trying to access the ResultsSet this produces outside ...
4
votes
3answers
1k views
Getting the count of rows in a Java resultset
Does anyone know a better way of getting the number of rows in a Java resultset returned from a MySQL database?
I'm currently using this:
public static int getResultSetRowCount(ResultSet resultSet) ...
4
votes
8answers
1k views
How to find out if a Java ResultSet obtained is empty?
Class.forName("org.sqlite.JDBC");
Connection conn =
DriverManager.getConnection("jdbc:sqlite:userdata.db");
Statement stat = conn.createStatement();
ResultSet rs = stat.executeQuery("SELECT * ...
4
votes
5answers
3k views
How to check if resultset has one row or more?
How to check if resultset has one row or more with JDBC?
4
votes
2answers
638 views
Get MySQL Query Results as Their Native Data Type?
I've tried fetching MySQL query results using mysql_fetch_row() mysql_result() and numeric values are being returned as strings. Is there any way to fetch the data as its datatype stored in the table? ...
4
votes
6answers
1k views
ResultSet and Select * Performance
I am refactoring some Spring JDBC code in which some of the costlier queries do "SELECT * FROM..." - and was about to start checking which columns were actually needed and just SELECT x , y FROM.. ...
3
votes
6answers
87 views
using the date type in java
I am trying to get two dates from a SQL query, and compare them. So to compare them, I believe I will need to use the "Date" type. Here is what I am trying, I know I am getting the date from the ...
3
votes
2answers
58 views
JDBC Closing Resources
I am unsure whether a statement and resultset should be closed after each query or after all my queries have been made (ie at the same time i close the connection)?
Correct me if I'm wrong, but I'm ...
3
votes
4answers
303 views
Why is While (rs.next()) statement ending after 1st iteration?
I am using a SELECT statement to get data from a table and then insert it into another table. However the line "stmt.executeQuery(query);" is inserting the first line from the table then exits. When ...
3
votes
3answers
149 views
mysql Memory (RAM) usage increases while using ResultSet?
I am using MySQL and Java to SELECT about 50000 records.
The strange thing is that when I use ResultSet and next() method to read the data, I see that the RAM usage of my java application increases ...
3
votes
2answers
367 views
Java ResultSet, SetObject vs SetString/SetDate/etc
I'd like to know whether anyone considers using PreparedStatement.setObject for all data types as bad practice when preparing a statement. A use case for this would be a DAO with a generic ...
3
votes
1answer
640 views
iBatis ResultMaps: The column name <…> was not found in this ResultSet
Given a ResultMap for an iBatis select query, it seems obligatory that all columns (that are mapped to properties in the ResultMap) are actually part of the SQL query.
But that's a bit annoying if ...
3
votes
1answer
430 views
How to get ResultSetMetaData from enity manager?
Is there a way to get the MetaData of the result returned by executing a nativeQuery on an Entity Manger in JPA?
3
votes
1answer
369 views
BLToolkit: Multiple resultsets?
I haven't found a way to retrieve two lists of objects from an SP with two select statements.
Is it possible with BLToolkit, or can only hierarchical data be fetched in such a manner?
I'm trying to ...
3
votes
1answer
295 views
getColumnLabel vs. getColumnName
What is the difference between ResultSetMetaData.getColumnLabel and ResultSetMetaData.getColumnName?
Label: Gets the designated column's suggested title for use in printouts and displays.
Name: Get ...
3
votes
2answers
135 views
Numbering MySQL Result Row
i have a mysql result set like bellow
id name
---------------------
1 abc
1 abc
2 xyz
2 xyz
3 pqr
now i need to modify the result set so that it would ...
3
votes
4answers
493 views
How to check that a ResultSet contains a specifically named field?
Having rs, an instance of java.sql.ResultSet, how to check that it contains a column named "theColumn"?
3
votes
4answers
310 views
Java Resultset.get***(…) quicker by string or int?
When iterating through a Resultset in the standard way
while (rs.next()){
...
}
To retrieve column data (e.g long) is it quicker to use
rs.getLong(String columnLabel)
or
rs.getLong(int ...
3
votes
3answers
507 views
How can I identify columns when SELECTing from multiple tables with JDBC?
I have two tables that I join on the id-column, they look like:
+-------+
| users |
+----+--+---+
| id | name |
+----+------+
+-------+
| posts |
+-------+------+---------+
| id | user_id | message ...
3
votes
4answers
2k views
Oracle doesn't remove cursors after closing result set
Note: we reuse single connection.
************************************************
public Connection connection() {
try {
if ((connection == null) || ...
3
votes
1answer
1k views
Getting a ResultSet/RefCursor over a database link
From the answers to http://stackoverflow.com/questions/1122175/calling-a-stored-proc-over-a-dblink it seems that it is not possible to call a stored procedure and get the ResultSet/RefCursor back if ...
3
votes
3answers
2k views
SQLite 3 - JDBC driver throws “ResultsSet Closed” exception on empty resultset
I a problem in JDBC driver for SQLite.
I am executing a query with SELECT statement.
If I get an empty resultset (0 rows) then I see a "Closed ResultSet" exception thrown when checking GetString(1).
...
3
votes
3answers
19k views
Convert Java resultset to String array
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 array, so that I can pass it into ...
3
votes
2answers
3k 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 procedure multiples( param1 ...
3
votes
1answer
2k views
Django-sphinx result filtering using attributes?
I was going through the django-sphinx documentation, and it looks like it allows you to filter search results using attributes,
queryset = MyModel.search.query('query')
results1 = ...
3
votes
2answers
4k views
How to stub/mock JDBC ResultSet to work both with Java 5 and 6?
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 hence the tests should ...
3
votes
5answers
4k views
Easy way to fill up ResultSet with data
I want to mock a ResultSet. Seriously.
I'm refactoring one big complicated piece of code which is parsing data from ResultSet, and I want my code to behave identically. So, I need to write a unit test ...
3
votes
6answers
6k views
PHP: Checking for valid MySQL result resource
I have this code:
$rows = array();
$res = mysql_query($someQuery);
if(!mysql_errno())
while($row = mysql_fetch_assoc($res))
$rows[] = $row;
some query is an arbitrary query that I ...
2
votes
4answers
119 views
Get Number of Rows returned by ResultSet in Java
I have used a ResultSet that returns certain number of rows. My code is something like this:
ResultSet res = getData();
if(!res.next())
{
System.out.println("No Data Found");
}
while(res.next())
...
2
votes
2answers
58 views
MySQL stored procedure giving different results to command line
I have a simple MySQL stored procedure designed to return all child records for a given node.
My problem is when I type this manually it returns the proper results - but when I put the same code into ...
2
votes
2answers
60 views
how to move a particular row of ResultSet to the End of it in MSSQL?
My question is : I want to move a particular row to the end of a MSSQL resultset in java.
How can this be done ? I found a reference in MySQL at link stackoverflow
But, it didn't work for me since ...
2
votes
5answers
54 views
Select the latest MySQL Data but unique resort
I have a 1 table database that has a list of advertisements.
I am trying to grab the LATEST advertisement for EACH resort.
I know it should probably be a table database, but how would I go about ...
2
votes
2answers
71 views
why does this query return a row with nulls
compare
SELECT distinct u_id,timestamp as time
FROM my_table;
and
SELECT distinct u_id,max(timestamp) as time
FROM my_table;
When my table has no rows at all (or if I add a where clause that ...