0
votes
1answer
34 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
5answers
43 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
33 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
13 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
42 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
30 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
38 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 ...
2
votes
1answer
23 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
21 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 = ...
1
vote
3answers
37 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
vote
1answer
60 views

How to delete rows from multiple tables using deleteRow() method

I've been working on the following code: import java.sql.*; public class deleteRowDemo { public static void main(String args[]) { Connection con; Statement stmt; ...
0
votes
1answer
61 views

Flattening Streams produced from multiple JDBC ResultSets, to prevent loading everything in memory

I am given List[String], that I need to group in chunks. For each chunk, I need to run a query (JDBC) that returns a List[String] as a result. What I'm trying to get to is: All the results from the ...
0
votes
1answer
68 views

The statement did not return a result set. Java Error

I am trying to delete data from a table from java using JDBC. First I am counting the no of rows and making sure the table is not empty and then Truncating the data. Here is the code I am using ...
0
votes
1answer
26 views

resultset to get values from next row

hi i'm new to java how ever i googled and got code to connect to database and retrieve the values. the problem is ResultSet gets the value only from FIRST ROW of the table here is the code.. String ...
0
votes
2answers
50 views

How to get COUNT from ResultSet object?

I am passing the following query to a ResultSet object: String query = "SELECT COUNT( DISTINCT KEY ), SOURCE FROM MY_TBL\n" + "GROUP BY SOURCE\n" + "ORDER BY SOURCE"; I want ...
0
votes
3answers
57 views

Result set usage when expected one int value only

I know it is basics and probably really simple, but I'm struggling with the following situation where i want to query the database for a specific int(id in my case), but somehow i can't acces the ...
0
votes
0answers
7 views

mysql jconnect getInteger returns correct no. of characters, but sometimes all zeros

I have an intermittent problem where a ResultSet.getString op will return the correct number of characters but sometimes they're all zeros. Integers are returned correctly. If I manually check the ...
0
votes
0answers
36 views

ResultSet field name is null?

Hy all, My problem is i do a query, and the ResultSet gets the first field the id,but the rest of the fields are null,and i can't figure out why. Here is a code snippet with the relevant part: ...
0
votes
0answers
24 views

Neat resultset metadata [duplicate]

I was wondering whether you could use getColumnDisplaySize() to produce a neater resultset with the results in the correct columns as at the moment some results take up more than one column so the ...
2
votes
2answers
49 views

Using getColumnDisplaySize() for neatness?

I was wondering whether you could use getColumnDisplaySize() to produce a neater table with the results in the correct columns and how could I do this? This is my code at the moment. stmt = ...
1
vote
2answers
53 views

the value of Resultset while getting now rows form database

i want to know that while firing the select query from database in java(JDBC).suppose that the execute(Query) return no rows then what will be thae value of Resultset object??? is it null or can be ...
2
votes
4answers
84 views

Comparing Resultsets In java

I am looking for ways to compare two ResultSets in java (RS1 and RS2). Things to note/Requirements The results sets are from two different databases(Oracle & SQl-Server).Thus I can't make any ...
1
vote
2answers
102 views

Displaying data from JDBC select statement [closed]

I am creating a program that is going to allow for displaying and manipulating data from my database. I wrote the following code based on a tutorial I found: public class JavaApplication25 { ...
0
votes
1answer
131 views

Swing, Jtable , JDBC

package com.officelog.manager; import java.awt.*; import javax.swing.*; import java.util.*; public class AdminControl implements Runnable{ public static void main(String[] args) { new ...
0
votes
2answers
325 views

Iterating over ResultSet and adding its value in an ArrayList

I am iterating over an ResultSet and trying to copy its values in an ArrayList. The problem is that its traversing only once. But using resultset.getString("Col 1") to resultset.getString('Col n") is ...
0
votes
1answer
132 views

Unable to return to JDBC SQL query results after executing a subquery

I am working on a scenario where I have to execute a SQL query in JDBC to find the information about students enrolled in a particular subject. When this query runs, 3 records should display at a ...
-1
votes
1answer
156 views

ResultSet returns only last row into JTable

I have done enough searches to solve my problem which i have done partly but there's this one bug that keeps disturbing me.I am trying to fetch data from a database based on a condition.I have a table ...
1
vote
1answer
120 views

cachedrowsetimpl getString based on column label

In the name of God Salaam, I've a problem. When a I execute follow code all thing is good: ResultSet rs = con.prepareStatement("SELECT r.UID AS R FROM r").executeQuery(); ...
0
votes
3answers
90 views

adding the values from gui to the database table

I am trying to update a table in the database where i m accepting fees from the students and maintaining the record of the amount received, total amount received, and the mode of payment etc. my code ...
-1
votes
2answers
114 views

Why am I getting ResultSet is closed error when I never closed any

I have this error in my code and have checked and edited it thoroughly, yet I still get same issue. I also use multiple resultSet and Statements yet same error occurs. Below is the error I get: ...
1
vote
1answer
111 views

JDBC lost connection while iterating ResultSet

In my application I connect to MSSQL database via TCP/IP using Spring and JdbcDAOSupport. It works fine when the connection is stable, but when I unplug the ethernet cable while iterating through the ...
2
votes
2answers
563 views

Convert a Result Set from SQL Array to Array of Strings

I am querying the information_schema.columns table in my PostgreSQL database. Using a table name, the result set finds all the column names, type, and whether it is nullable (except for the primary ...
2
votes
4answers
77 views

ResultSet takes RAM after closing

I have problem with memory leaking. This schemat of my code : CallableStatement c = Baza.conn.prepareCall("select * from something"); ResultSet rs = c.executeQuery();//takes about 100sec ...
0
votes
0answers
147 views

in Java How can I get specific data from resultsets from mysql database to use with JLabels

I need help with getting data from a specific field, I will explain certain details about my practice program. I am making a simple credit card system, users will either enter account number or social ...
0
votes
0answers
46 views

ResultSet Jasper Exception

I am trying to get the top products voted with the method below. You can see that I am first getting the list of all products and store result in results and for each product I am getting the votes ...
0
votes
1answer
56 views

Is interaction between ResultSet and ResultSetMetaData one-way?

A colleague of mine pulled some code from the web that does something like the following: ResultSetMetaData rsmd = rs.getMetaData(); while (rs.next()) { count = rsmd.getColumnCount(); ...
0
votes
1answer
138 views

Getting value fom a ResultSet hangs

I am building a Java application to query a remote SQL database. I'm able to read all but one of the columns. When I try to read that column, my application just hangs forever without firing any ...
3
votes
2answers
278 views

reuse the ResultSet object in java

I am working on a swing project. In which i am using jdbc odbc Connection bridge to access the data from SQL database. I am using the following code try { ...
1
vote
2answers
199 views

Java SQL: Statement.hasResultSet()?

My app uses MySQL on one platform and SQLite on another, as such there are differences, such as that when using query like DELETE FROM USERS: On MySQL, PreparedStatement.getResultSet() will return ...
0
votes
1answer
78 views

Resultset Validation

I do have a resultset,which I need to validate only some fields and then update to another table,Really I dont know how to validate it and pass back to the orginal resultset?Is there any way to do it ...
0
votes
0answers
36 views

Running Reports in WebApplication parallel in multiple machines with same instance opens inappropriate reports [closed]

I am working on Java-Flex Web application, In which i can run a excel reports. When i log into the application multiple times parallel with same user credentials in same machine but with different ...
0
votes
2answers
135 views

Why result set is empty

String name = request.getParameter("type"); String queryString = "SELECT * FROM Customer WHERE TYPE='Provider';"; rs = statement.executeQuery(queryString); while(rs.next()) ...
0
votes
1answer
385 views

Operation not allowed after ResultSet closed in java

I have class called Database. public class Database { public Connection connect = null; public Statement st = null; public PreparedStatement ps = null; public ResultSet rs = ...
0
votes
2answers
139 views

ResultSet is reused

Okay so I have a piece of code that is called several time. However during some testing I noticed that my ResultSet is returning wrong according to the database. After further investigations I noticed ...
2
votes
2answers
451 views

What is the maximum recognized fetch size for a ResultSet [closed]

As the title states, what is the maximum size recognized by the Java ResultSet object? Specifically the setFetchSize function. ResultSet results...; results.setFetchSize(HUGE_VALUE); More to the ...
-2
votes
2answers
322 views

What does java return in resultset in case of mysql update query

I need to know did the update query go wrong or right, i know how to do it in PHP, but have no idea in java (I'm new to java).
0
votes
2answers
57 views

values are not being inserted into resultset after executing preparedstatement in executeQuery()

i have written the following code PrepareStatement stmt=con.prepareStatement("select * from studentdetails where sname=?"); String snm=jTextField10.getText(); ps.setString(1,snm); ResultSet ...
-1
votes
1answer
152 views

jdbc apache poi create xls file

i have written the following program to get list of tables from postgres database and write them into a xls file. i have included the Apache poi library to write xls file. the program is running with ...
1
vote
1answer
135 views

Alternative to next method in JDBC Resultset

Is there a way in JDBC that I extract more than a single row at a time ? The next method (of ResultSet class) allows one row at a time processing. My query returns thousands of rows (just a single ...
0
votes
2answers
48 views

want to access the value of a cell of a select query

In my application I'm storing the the color in my table emp like this : +---------+------------------+ | emp | id | color | +---------+------------------+ | hary | 123 | red | ...

1 2 3 4 5