0
votes
0answers
22 views

PreparedStatement with my class

Let's say I have classes Person and Country. Also, a CountryCollection that has around 15 countries in ArrayList. I wanna make form, let's call it FrmPersonInput, and there I wanna have 3 text fields ...
0
votes
2answers
100 views

Java assignment not working

I have a function which allows user's to log in to the system in a User class. Upon logging in - their forename and surname are retrieved from the databased and stored as private variables in the User ...
2
votes
1answer
233 views

preparedStatement and resultSet interfaces how to use batch and get methods

I am starting now to use the package java.sql and I am doing some experiments with it. I have these two tables the first is: `user` ( `userID` INT NOT NULL AUTO_INCREMENT , `nickname` VARCHAR(20) ...
4
votes
2answers
527 views

Oracle JDBC performance of ResultSet

I was using so far something like this for querying my database that was working perfectly fine : PreparedStatement prepStmt = dbCon.prepareStatement(mySql); ResultSet rs = prepStmt.executeQuery(); ...
2
votes
1answer
287 views

Getting results from a MySQL Stored Procedure in PHP5 using prepared statements

I'm developing a website using PHP5 and MySQL. I use the mysqlnd driver and I have a class that uses prepared statements to execute any queries I want. I have a table where I store information about ...
0
votes
3answers
156 views

Manipulate setter & getter in PreparedStatement and ResultSet

following situation: Our old AS400 DB can't handle UTF8 so I do need to manipulate every select / insert / update. My first thought was: hey, why not override the AS400JDBCPreparedStatement & ...
1
vote
1answer
391 views

How to insert rows dynamically from a select query to another table in java?

I have a select query (using a prepared statement) which returns a Resultset. For example the query can be : SELECT * FROM TABLE; and I want the result of this query to insert in another table, ...
0
votes
2answers
117 views

Incomplete ResultSet data

Comment comment; ArrayList<Comment> commentList = null; try{ ConnectionFactory myFactory = ConnectionFactory.getFactory(); Connection conn = ...
0
votes
2answers
473 views

how can i close the resultSet, prepareStatement, conn in several methods below to avoid rs close and connection pool getting jammed

the whole data operation is below. i want to close close each and every resource without interfering with the next connection. should i change the constructor to a connection() mthod then have a ...
0
votes
1answer
198 views

SQLException, ResultSet closed but I can figure out why

I'm having a problem with java.sql.ResultSet, I have a java.sql.PreparedStatement on which I run executeQuery() to return a ResultSet yet when I try to get the results from the query I'm getting an ...
0
votes
4answers
1k views

Trying to query database using PreparedStatement, ResultSet is coming back closed when it ought not to

I am trying to query my database using a prepared statement. Initially, I had this: public ResultSet preparedQueryContactsWhereAccount(String accountName) throws SQLException { PreparedStatement ...
0
votes
7answers
6k views

What does “if (rs.next())” mean?

I am currently getting the error, java.sql.SQLException: Method 'executeQuery(String)' not allowed on prepared statement. because I am using PreparedStatement stmt = conn.prepareStatement(sql); ...
4
votes
3answers
12k views

Bulk insert in Java using prepared statements batch update

I am trying to fill a resultSet in Java with about 50,000 rows of 10 columns and then inserting them into another table using the batchExecute method of PreparedStatement. To make the process faster ...
2
votes
3answers
5k views

Getting java.sql.SQLException: Operation not allowed after ResultSet closed

When I execute the following code, I get an exception. I think it is because I'm preparing in new statement with he same connection object. How should I rewrite this so that I can create a prepared ...
5
votes
3answers
696 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 ...
0
votes
1answer
647 views

How to get the Query executed using ResultSet?

I have a preparedStatement called PrepStatement which contains a Select Query like Select a, b from abc where ab="cd". executed below ResultSet selectParams = PrepStatement.executeQuery(); Is ...
1
vote
2answers
236 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 prepared statements and ...
0
votes
1answer
265 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 would ideally like to ...