Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7797013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:32:54+00:00 2026-06-01T23:32:54+00:00

I am trying to execute several calls to the database, the first one (the

  • 0

I am trying to execute several calls to the database, the first one (the select) works fine.. but when going into the second one i get this error

com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after statement closed.
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)
    at com.mysql.jdbc.Util.getInstance(Util.java:381)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:984)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:926)
    at com.mysql.jdbc.StatementImpl.checkClosed(StatementImpl.java:380)
    at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1250)
    at MysqlConnect.main(MysqlConnect.java:77)
    at __SHELL13.run(__SHELL13.java:6)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at bluej.runtime.ExecServer$3.run(ExecServer.java:724)

And here is my code (please excuse still learning)

import java.sql.*;

public class MysqlConnect{

  public static void main(String[] args) {

  Connection conn = null;

  String url = "jdbc:mysql://localhost:3306/";
  String dbName = "MyBussiness";
  String driver = "com.mysql.jdbc.Driver";
  String userName = "mambo"; 
  String password = "jambo";

  try {
  Class.forName(driver).newInstance();
  conn = DriverManager.getConnection(url+dbName,userName,password);



  System.out.println("Connected to the database");
       /*SELECTING DATA */
       // Get a statement from the connection
       Statement stmt = conn.createStatement() ;
       System.out.println("--------------------------------------------.");
       System.out.println("Retrieving items from the customers table  (USING SELECT)...");
       System.out.println("--------------------------------------------.");
       Thread.sleep(2000);
       // Execute the query
       ResultSet rs = stmt.executeQuery( "SELECT * FROM customers" ) ;

       // Loop through the result set
       while( rs.next() )
       {
          System.out.print( rs.getInt(1) ) ;
          System.out.print(",      ");
          System.out.print( rs.getString(2) );
          System.out.print(",      ");
          System.out.print( rs.getString(3) );
          System.out.print(",      ");
          System.out.print( rs.getString(4) );
          System.out.print(",      ");
          System.out.print( rs.getString(5) );
          System.out.print(",      ");
          System.out.print( rs.getString(6) );
          System.out.print(",      ");
          System.out.print( rs.getString(7) );
          System.out.print(",      ");
          System.out.print( rs.getString(8) );
          System.out.print(",      ");
          System.out.print( rs.getString(9) );
          System.out.print(",      ");
          System.out.println( rs.getString(10) );
        }

       // Close the result set, statement and the connection
       rs.close() ;
       stmt.close() ;



         /*UPDATING DATA */
       // Get a statement from the connection
       conn = DriverManager.getConnection(url+dbName,userName,password);
       Statement stmt2 = conn.createStatement() ;
       System.out.println("---------------------------------------------------------------------------.");
       System.out.println("Updating Customers Table for Customer ID 1 Federico Gutierrez Address1 Field  (USING UPDATE)...");
       System.out.println("---------------------------------------------------------------------------.");
       Thread.sleep(2000);
       // Execute the query
       ResultSet rs2 = stmt.executeQuery("UPDATE Customers SET Address1='999 Mambo Avenue' WHERE CustomerID = 1");

       // Loop through the result set
       while( rs2.next() )
       {
          System.out.print( rs2.getInt(1) ) ;
          System.out.print(",      ");
          System.out.print( rs2.getString(2) );
          System.out.print(",      ");
          System.out.print( rs2.getString(3) );
          System.out.print(",      ");
          System.out.print( rs2.getString(4) );
          System.out.print(",      ");
          System.out.print( rs2.getString(5) );
          System.out.print(",      ");
          System.out.print( rs2.getString(6) );
          System.out.print(",      ");
          System.out.print( rs2.getString(7) );
          System.out.print(",      ");
          System.out.print( rs2.getString(8) );
          System.out.print(",      ");
          System.out.print( rs2.getString(9) );
          System.out.print(",      ");
          System.out.println(rs2.getString(10) );
        }

       // Close the result set, statement and the connection
       rs2.close() ;
       stmt2.close() ;


           /*INSERTING DATA */
       // Get a statement from the connection
       conn = DriverManager.getConnection(url+dbName,userName,password);
       Statement stmt3 = conn.createStatement() ;
       System.out.println("---------------------------------------------------------------------------.");
       System.out.println("Inserting a new customer (Mario Villalobos) into the customers table ... (USING INSERT)");
       System.out.println("---------------------------------------------------------------------------.");
       Thread.sleep(2000);
       // Execute the query
       ResultSet rs3 = stmt.executeQuery("INSERT INTO Customers (SSN, FirstName, LastName, Address1, Address2, State, City, Zip, PhoneNumber)"+ 
                                          " VALUES ('444559999','Mario','Villalobos','777 Boynton Beach','Apt 4R','FL','Boynton Beach','33436','(555)444-5555'");

       // Loop through the result set
       while( rs3.next() )
       {
          System.out.print( rs3.getInt(1) ) ;
          System.out.print(",      ");
          System.out.print( rs3.getString(2) );
          System.out.print(",      ");
          System.out.print( rs3.getString(3) );
          System.out.print(",      ");
          System.out.print( rs3.getString(4) );
          System.out.print(",      ");
          System.out.print( rs3.getString(5) );
          System.out.print(",      ");
          System.out.print( rs3.getString(6) );
          System.out.print(",      ");
          System.out.print( rs3.getString(7) );
          System.out.print(",      ");
          System.out.print( rs3.getString(8) );
          System.out.print(",      ");
          System.out.print( rs3.getString(9) );
          System.out.print(",      ");
          System.out.println(rs3.getString(10) );
        }

       // Close the result set, statement and the connection
       rs3.close() ;
       stmt3.close() ;


                  /*DELETING DATA */
       // Get a statement from the connection
       conn = DriverManager.getConnection(url+dbName,userName,password);
       Statement stmt4 = conn.createStatement() ;
       System.out.println("---------------------------------------------------------------------------.");
       System.out.println("Deleting customer where the name is George...  (USING Delete)");
       System.out.println("---------------------------------------------------------------------------.");
       Thread.sleep(2000);
       // Execute the query
       ResultSet rs4 = stmt.executeQuery("DELETE FROM Customers WHERE FirstName Like '%George%'");

       // Loop through the result set
       while( rs4.next() )
       {
          System.out.print( rs4.getInt(1) ) ;
          System.out.print(",      ");
          System.out.print( rs4.getString(2) );
          System.out.print(",      ");
          System.out.print( rs4.getString(3) );
          System.out.print(",      ");
          System.out.print( rs4.getString(4) );
          System.out.print(",      ");
          System.out.print( rs4.getString(5) );
          System.out.print(",      ");
          System.out.print( rs4.getString(6) );
          System.out.print(",      ");
          System.out.print( rs4.getString(7) );
          System.out.print(",      ");
          System.out.print( rs4.getString(8) );
          System.out.print(",      ");
          System.out.print( rs4.getString(9) );
          System.out.print(",      ");
          System.out.println(rs4.getString(10) );
        }

       // Close the result set, statement and the connection
       rs4.close() ;
       stmt4.close() ;

       //Reseting data
       conn = DriverManager.getConnection(url+dbName,userName,password);
       Statement stmt5 = conn.createStatement() ;
       ResultSet rs5 = stmt.executeQuery("UPDATE Customers SET Address1='555 YY Ave' WHERE CustomerID = 1");
       rs5.close() ;
       stmt5.close() ;

       conn = DriverManager.getConnection(url+dbName,userName,password);
       Statement stmt6 = conn.createStatement() ;
       ResultSet rs6 = stmt.executeQuery("DELETE FROM Customers WHERE FirstName Like '%Mario%'");
       rs6.close() ;
       stmt6.close() ;
       conn = DriverManager.getConnection(url+dbName,userName,password);     
       Statement stmt7 = conn.createStatement() ;
       ResultSet rs7 = stmt.executeQuery("INSERT INTO Customers (SSN, FirstName, LastName, Address1, Address2, State, City, Zip, PhoneNumber)"+ 
                                          " VALUES ('923431432','George','Scott','2325 S Babcock St',' ','FL','Melbourne','32901','(321)984-4910'");
       rs7.close() ;
       stmt7.close() ;
       conn.close() ;


  System.out.println("Disconnected from database");
  } catch (Exception e) {
  e.printStackTrace();
  }
  }
} 

Any help would be much appreciated.

NOTE: It is telling me that the connection is closed after the first pass, but i do not have a conn.Close(); until the end as you can see.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T23:32:56+00:00Added an answer on June 1, 2026 at 11:32 pm
    ResultSet rs2 = stmt.executeQuery(...)
                 // ^^^^
    

    You meant stmt2 there. Please recheck all your code to make sure you don’t re-use statements.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to execute a block of code if one of several conditions is
I`m trying to execute linux commant 'cat' from java code, but it does not
I'm trying to execute the following line: exit | sqlplus username/password@sid @test.sql Works great
I'm trying to execute this: $ mysql --user=XXX --password=XXX --batch --skip-column-names \ -e SELECT
I'm trying to execute a SQL command, but I just can't find out why
I am trying to execute DBCC CHECK DB('MyDB) using ADO.Net, but how can I
I'm trying to integrate Amazon Product API into my website and came across several
I am trying to create an animation of several elements opening and closing one
I'm trying to compile several MySQL statements and execute them in the same request,
This might sound silly but I have been trying to execute a NUnit test

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.