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
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
0answers
8 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
31 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
33 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
29 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
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 ...
0
votes
0answers
10 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
66 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
40 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
40 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
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 = ...
0
votes
1answer
34 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
44 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
16 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
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
votes
2answers
38 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 ...
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
47 views
Google apps script resultset into html
I have made a connection to an external database and I am fetching data from a particular table. All of it works (tested by putting the results in a log). Now I want to make a GUI in html, but I don't ...
1
vote
1answer
31 views
Swing DefaultTableModel separated from GUI
I'm using ResultSets to create my DefaultTableModel, so I'm thinking that it might be good to avoid using ResultSets in the view, where the DefaultTableModel populates my JTables. I suspect my ...
-3
votes
1answer
35 views
execute mysql RESULTSET from given string
is that possible to execute result set from given pattern in mysql
like
i am using following code :-
String query = "select logintime from auditlog";
pst = (PreparedStatement) ...
0
votes
1answer
24 views
Error with extended ResultSet
In my project i need a ResultSet that creates my Models, depending on the result data.
So i extends the \Zend\Db\ResultSet\ResultSet and overwrite the current method.
/**
* @return ...
0
votes
3answers
56 views
Newbie pointer rs.next
I would like to see only that products user is looking for them, but when second if is executed it will push(pointer or whatever is there) to next ID(id I have as unique so it will push to nowhere) ...
2
votes
1answer
27 views
Result set code doesn't get executed
I've got the following code to query a database! But the code inside the while loop doesn't get executed! No messagebox, just doesn't get executed! Can anyone help me! Result set is not empty! When I ...
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
1answer
87 views
Displaying multiple values from a ResultSet in a single JTable cell
im currently stuck on my project wherein i need to generate a daily report.
I need to display all the fault number that is involved in a call for the whole day.
Heres what i currently have
| Number ...
1
vote
1answer
133 views
Display Items from a Database in a JavaFX TableView
Ok, so I'm new to this, and I've been searching for two weeks trying to get an SQL resultset to print to a TableView made by JavaFX Scene Builder. I can print my resultset using System.out.println and ...
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
1answer
36 views
Why are variables being cut out?
High school students trying to create a version of Facebook for our school. Right now we are stuck on joining tables in the trial database before we can release it.
To join the tables post, users, ...
0
votes
1answer
65 views
CypherQuery returns empty result in JavaEmbedded, but correct result in Neoclipse
I have a strange problem with a cypher query. The query works fine in Neoclipse and returns the correct result. But in java embedded mode the result is empty. I can't figure out the problem. Is there ...
0
votes
1answer
41 views
How to go over an array result again in order to arrange (by one of the fields) the result into a table in PHP
I have to do a "detailed report" ordered by location, provider or asset description
the thing is, although i get the proper result I'd like to display results like
Location 1:
Table here with assets ...
0
votes
1answer
69 views
how to call Array of java class in jsp file?
Hello I want to pass my two ResultSet in jsp file. i have two ResultSet rs and rs1. i have stored both ResultSet in Single Array. now i want to print that array in jsp file. so i can show my result on ...
0
votes
0answers
85 views
Reference cursor of Resultset.next() throws- java.sql.SQLException: statement handle not executed
I am experiencing an issue while calling oracle store procedure has reference cursor as output parameter.
Everything works well when we have small no of records return by query in procedure but when ...
0
votes
0answers
165 views
Jasper Reports Fill Parameters in SQL Query
I have a web application which generates reports based off an SQL query. These SQL queries have Jasper Report parameters (i.e. $P{Param}).
In my Java code, I'm using PreparedStatement to execute ...
0
votes
1answer
34 views
SQL Results output as a grid/single row resultset to multiple rows
Is it possible to output a resultset as a grid? For example I output the following resultset using sql:
col1 col2 col3 col4 col5 col6 col7 col8 col9
10 23 54 12 ...
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
4answers
45 views
ResultSet in servlet contains no values
here is my servlet code...
try {
HttpSession session=request.getSession(true);
String FN= (String)session.getAttribute("FN");
String h1= request.getParameter("h1"); ...
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
5answers
202 views
Convert Resultset to String array
I need to Convert My result set to an array of Strings. I am reading Email addresses from the database and I need to be able to send them like:
message.addRecipient(Message.RecipientType.CC, ...
-2
votes
2answers
59 views
How to return something from overriden spring mapRow<T> if ResultSet is empty?
yesterday I got some problems while I tried to return some value from mapRow
strings.addAll(getJdbcTemplate().query(query, new RowMapper<String>() {
@Override
public String ...
0
votes
2answers
31 views
How to fill an object constructor by querying a DB in Java
I am trying to make a UserInfo object constructor by querying a database and I keep getting the cannot find symbol error for the UserInfo thisUserInfo = new UserInfo() part. I am trying to take the ...
0
votes
2answers
38 views
In Java, Why ResultSet does not allow you to run next() more than 1 time?
Look at this code:
ResultSet results=preparedStmt.executeQuery();
while (results.next()){
String subject=results.getString(1);
System.out.println(subject +" 1st time");
}
while ...







