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.
0
votes
0answers
11 views
Getting foreign key and refering table name of perticular database table from metadata DatabaseMetaData using JAVA class
I am writing java class to get all connection database objects(tables). I have used
rs = meta.getExportedKeys(conn.getCatalog(), null, "account_adjustment");
while (rs.next()) {
String ...
0
votes
2answers
31 views
Get rid of duplicate lines in SQL result set
I have 2 tables which I use to get a result set from
select
a.id,
a.test,
a.score,
b.name,
b.person,
b.grade
from table_test a, table_pers b
where a.test=b.test
now the problem is that table b ...
0
votes
3answers
32 views
How to find out the variable types in sql result set in java?
I wonder if there is way to know the types of results I retrieved from the database in java. Ultimately I want to be able to use appropriate get method for each column of the resultSet (or be able to ...
0
votes
2answers
34 views
could not extract ResultSet
public class DBUtilU {
private static Session scss;
private static SessionFactory sfactory;
static {
Configuration cfg = new ...
0
votes
0answers
20 views
Java JDBC driver for xls/x
One of my project needs an JDBC driver to read xls/x file as a resultset.
I came across SQLSheet but there are some issues with it. And then there is XLS JDBC, which do not support xlsx files.
I can ...
0
votes
1answer
32 views
Using CellTable for ResultSet
I'm a little bit stucked right now and I hope someone can help me with my problem.
I'm getting a ResultSet from a SQL Query and I want to use GWT CellTable for displaying the content of my ResultSet ...
0
votes
1answer
15 views
why is my resultset containing only one result when it was supposed to get two results
I executed the same query in my db interface directly and got two rows as result... I thought i should be getting same here too... but it is returning only one and for the second it says column index ...
0
votes
0answers
25 views
Android MySQL Write Resultset to Array and then to gridview
I have MySQL Table with image blobs and now I want to retrieve them and write them to an array to later show them in gridview. But my problem is that the while loop never ends.
Here are some ...
0
votes
3answers
71 views
Working with ResultSets in Java
I've ran into a problem of having to run a number of different queries on the DB (different return types, different number of columns, etc).
While writing that i started to wonder if there's a proper ...
0
votes
1answer
34 views
Generate excel file using java with different column width
I am doing a java application (J2SE) which I have to generate a excel document (.xls). I did generate the file but I am not able to change the cell width dynamically according to the content which is ...
0
votes
1answer
53 views
Content of arraylist overwriting by another element
I have following code in a class.
When it processed it produces the xml with same value of tags which is in latest row of database.
I even tried reinitialize the object but it dont work
while ...
0
votes
2answers
36 views
Not getting all rows in resultset
I am using the following code to get the data from the database in a resultset:
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
Connection connection = ...
0
votes
1answer
32 views
Error while getting resultset
I have a class in which i am getting resultset from the database:
public ResultSet GetDataFromDB() {
ResultSet resultset = null;
try {
DriverManager.registerDriver(new ...
-5
votes
0answers
37 views
Resultset coming from other class is empty [closed]
I have a method of type ResultSet in one class which returns the resultset.
When i try to get resultset in another class by using object to 1st class it is coming empty although in 1st class , it is ...
1
vote
1answer
26 views
ResultSet.update(..) vs st.executeUpdate(sql)
Is it better to use ResultSet.update method or directly st.executeUpdate(sql) in order to update a database? Which one is better than the other and why?
Are these 2 methods totally interchangeable?
...
1
vote
3answers
37 views
How much data is too much for PDO fetchAll()
I have searched here but can't find anything using the search terms I can come up with. There is probably another post here somewhere that would answer my question but I have failed to find any.
The ...
1
vote
4answers
29 views
How to get the char data type from mysql using resultset
I have been doing CRUD operation on database, but i could not find any direct method for the getting the data type char in database.
Though i achieved the output using the getString(String ...
1
vote
2answers
45 views
Reading null values from ResultSet
There is the following table that may contain empty values for STA, ETA or ATA:
CREATE TABLE `flightschedule` (
`id` smallint(6) NOT NULL AUTO_INCREMENT,
`flightNum_arr` varchar(40) DEFAULT NULL,
...
0
votes
1answer
36 views
How to iterate over ResultSet by using MySql Stored Procedure with “select” keyword?
here is my Java method:
public static List<Company> selectCompanies() {
List<Company> companies=new ArrayList<Company>();
CallableStatement cs = null;
Connection conn = ...
2
votes
1answer
45 views
MySQL ON DUPLICATE KEY UPDATE while inserting a result set from a query
I am querying from tableONE and trying to insert the result set into tableTWO. This can cause a duplicate key error in tableTWO at times. So i want to ON DUPLICATE KEY UPDATE with the NEW determined ...
0
votes
1answer
41 views
UnsupportedOperationException in Java when checking whether the resultSet is Closed or not
I am getting error while checking whether the ResultSet is closed or not, here is the actual error I got in netbeans 7.3 :
Exception in thread "AWT-EventQueue-0" ...
1
vote
2answers
71 views
Retrieve entire row with ResultSet
Is it possible to retrieve entire row without calling getInt(..) getString(..) for every column?
I have multiple threads, each tread needs to write the result to some thread safe collection.
I want ...
0
votes
1answer
40 views
Extracting ResultSetMetaData from Spring JdbcTemplate
I am trying to fetch the resultsetmeta data using Spring jdbc template. It works fine if there is atleast one row returned.
The problem arises when there is no rows returned i.e. an empty resultSet.
...
0
votes
1answer
27 views
java sql ResultSet.deleteColumn
Need to compare the rows in two ResultSets, and retain only the columns that differ. The ResultSet interface has a method deleteRow but there is nothing like deleteColumn. Any workaround?
...
0
votes
1answer
40 views
How to process data from large ResultSet without loading them all to memory?
My Database is hosting on mysql server & I'm using Java to analyze data.
My issue: after execute 'Select' query will return a 2.5 GB result set. I don't want to load all the data to memory. So ...
0
votes
1answer
41 views
SQL query works in phpMyAdmin but not in JDBC [closed]
I'm building a site in JSP and I'm using MySQL and JDBC to the database. I try to make a search function in unicode (to allow Hebrew characters).
So I generate a SQL command, the query works when I ...
0
votes
2answers
53 views
How to run several select queries with same statement and result set? [duplicate]
I am trying to write simple Java web application to get data from a database.
I need to run several select queries on different database tables.
String queryOne = "select firstname from employees ...
0
votes
1answer
71 views
Select records from ResultSet java
I have a long query in Java which is put in a result set and executed by the executeQuery(string) method. Now I need to traverse this result set, query each of the records in the result set (method ...
0
votes
1answer
43 views
JDBC ResultSet Cusor Position
I have inherited some third party code using an old version of org.gjt.mm.mysql.Driver jdbc mysql driver class against a mysql database.
The code appears to perform an executeQuery, storing the ...
1
vote
0answers
9 views
Using A Result Set In A MySQL Function
I'm trying to create a function that reads a passed variable, if the variable begins with a * then I need it to read a result set of descriptions from another table and concatenate them together and ...
-1
votes
1answer
36 views
Iterate Sql.result set
I need to create OWL class from the first table name if cardinality 1:1 and OWL class from the second table name. If cardinality 1:* and one of tables describes object properties, create OWL object ...
0
votes
0answers
47 views
SQL exception before Start (with .next())
I'm having some bad trouble related to a resulset.
I have one statement, resulset, ... with the very same structure and it works but this one doesn't.
I've seen some people with similar problems but ...
0
votes
1answer
44 views
MYSQL match id with column keywords and show results
I have a db with hundreds of cakes and different keywords for each cake. In this example what I want to achieve is to first match cakes that have at least 2 similar keywords-- in this example it would ...
1
vote
5answers
79 views
JDBC - How do I 'getString' from a ResultSet if the column's name is a keyword?
Whenever I try to retrieve the value for a column named "Comment" in an Access db (.mdb), It gives me the following error.
Offence: copying data
ERROR - Offence TABLE
...
1
vote
2answers
38 views
DatabaseMetaData interface does not work?
I am trying the method of this interface explained here in this tutorial:
Here I go:
DatabaseMetaData dm = con.getMetaData();
...
0
votes
0answers
25 views
Retrieving CLOB objects from JDBC ResultSet taking lot time
We have standalone application connecting using JDBC to Oracle Datatbase. I am retrieving values for past one month, where resultset may vary from 25,000 to 100,000 records per month.
When iterating ...
2
votes
1answer
72 views
Statement.execute(sql) vs executeUpdate(sql) and executeQuery(sql)
I have a question related to this method: st.execute(sql); where st obviously is a Statement object.
Directly from this oracle java tutorial:
execute: Returns true if the first object that the ...
0
votes
1answer
32 views
About resultset type JDBC
In this oracle java tutorial, it says:
TYPE_FORWARD_ONLY: The result set cannot be scrolled; its cursor moves
forward only, from before the first row to after the last row. The
rows contained ...
0
votes
4answers
61 views
resultSet.getObject(1); where does the cast occur?
I would like to know when using the ResultSet instance method: getObject(int columnNumber); how come that it gets automatically cast to the column type? It's something implicitly done by the ResultSet ...
0
votes
0answers
26 views
ResultSet is getting closed on executing CallableStatement.getInt() method
Snippet:
proc = connection.prepareCall("{ ? = call MyPocedure() }");
proc.registerOutParameter(1, Types.INTEGER);
proc.setQueryTimeout(timeOut);
rs = proc.executeQuery();
int returnCode = ...
0
votes
3answers
110 views
MySQL - Iterating over columns in a result set
I'm working on a project where a user can assemble the components of a yoga class. It's spread across several files and thus too large to put it all here. The trouble I'm having is in one method ...
1
vote
2answers
58 views
Python, how to check if a result set is empty?
I have a sql statement that returns no hits. For example, 'select * from TAB where 1 = 2'.
I want to check how many rows are returned,
cursor.execute(query_sql)
rs = cursor.fetchall()
Here I get ...
0
votes
1answer
46 views
ResultSet and the SQL functions
I am using Derby database, and would like to know something: is a ResultSet a table? If so, that means I could invoke MIN(ResultSet.someColumn) (or MAX() or AVG()), right? Or would I have to dump the ...
2
votes
1answer
31 views
Error with “TYPE_FORWARD_ONLY” in sqlite
I am working with SQLite and JDBC and getting this error about the result_set being TYPE_FORWARD_ONLY.
PreparedStatement get_mileage = conn.prepareStatement("SELECT * FROM workout_log");
...
0
votes
0answers
36 views
Combine two ResultSets in one in Java SQL Error
I have two ResultSets returned from executing two queries on the same table and I want to combine the results together.
I tried to use:
Statement stmt = con.createStatement();
StringBuffer sb = ...
0
votes
1answer
36 views
Return a large array from a function
I have a class for an app that manages its database fetches. Instead of working with the result set (PDOStatement) in the class and echoing out the html from there, I'd like to return the result set ...
0
votes
2answers
79 views
Getting SQL error 1078 Before start of result set in Java program
I have a Java method that is supposed to get column values from one MySQL row and create a string with the values. When run, it generates a SQL error 1078 "Before start of result set."
Here is the ...
1
vote
1answer
27 views
Elastica return empty resultset when it should return some results
Hello I have a problem with elasticsearch php api, elastica.
if I run this:
$elasticaQueryMatch= new Elastica\Query\Match();
$elasticaQueryMatch->setField('fax', "16147591649");
...
1
vote
3answers
49 views
Merging Multiple ResultSet into Single ResultSet in Java
Let say I have multiple ResultSet(each resultSet would refer to 1 row in database) (they are of same table.) . Now I want to create consolidated ResultSet which would intern have all other resultSet. ...
-1
votes
2answers
39 views
How do i simplify hundreds of resultset lines
how do i simplify these lines. I have hundreds of these lines setting the value in each table cell.
dailyResult("SELECT COUNT(*) FROM fault WHERE Type = 'E-MAIL FAULT' AND No_Fault_Number ...





