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 8679253
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:55:32+00:00 2026-06-12T20:55:32+00:00

I have a code which is inserting data into table after processing but again

  • 0

I have a code which is inserting data into table after processing but again and again I am getting error

Operation not allowed after ResultSet closed

Here is my code.

 try {
        Connection con = null;
        Class.forName("com.mysql.jdbc.Driver");
        con = DriverManager.getConnection(
                "jdbc:mysql://localhost:3306/asteriskcdrdb", "root", "techsoft");
        Statement st = con.createStatement();
        ResultSet rs = st.executeQuery("Select * from asteriskcdrdb.sp1");
        while (rs.next()) {
            AreaCode = rs.getString("AreaCode");
            //System.out.println(AreaCode);
            String Pulse = rs.getString("Pulse");
            Rate = rs.getInt("Rate/pulse");
            // System.out.println(Rate);
            if (AreaCode.equals(str)) {
                System.out.println("Hii");
                try {
                    Connection conn = null;
                    Class.forName("com.mysql.jdbc.Driver");
                    conn = DriverManager.getConnection(
                            "jdbc:mysql://localhost:3306/asteriskcdrdb", "root", "techsoft");
                    Statement stmt = conn.createStatement();
                    rst = stmt.executeQuery("Select * from cdr where src ='9035020090'");
                    while (rst.next()) {
                        calldate = rst.getString("calldate");
                        // System.out.println(calldate);
                        clid = rst.getString("clid");
                        src = rst.getString("src");
                        dst = rst.getString("dst");
                        dcontext = rst.getString("dcontext");
                        channel = rst.getString("channel");
                        dstchannel = rst.getString("dstchannel");
                        lastapp = rst.getString("lastapp");
                        lastdata = rst.getString("lastdata");
                        duration = rst.getString("duration");
                        //System.out.println(duration);
                        dur = Integer.parseInt(duration);
                        //System.out.println(dur);
                        data.add(dur);
                        billsec = rst.getString("billsec");
                        disposition = rst.getString("disposition");
                        amaflags = rst.getString("amaflags");
                        accountcode = rst.getString("accountcode");
                        uniqueid = rst.getString("uniqueid");
                        userfield = rst.getString("userfield");
                        int newcost = checktime(dur, Rate);
                        stmt.executeUpdate("insert into cdrcost (
         calldate,clid,src,dst,dcontext,channel,
         dstchannel,lastapp, lastdata,duration,billsec,
         disposition,amaflags,accountcode,uniqueid,
         userfield,cdrcost) values ('" + calldate + "','" + 
         clid + "','" + src + "','" + dst + "','" + dcontext 
         + "','" + channel + "','" + dstchannel + "','" + 
         lastapp + "','" + lastdata + "','" + duration + "','" + 
         billsec + "','" + disposition + "','" + amaflags 
          + "','" + accountcode + "','" + uniqueid + "','" + userfield  
         + "','" + newcost + "')");
                     }

                } catch (Exception e) {
                    System.out.println(e);
                }
            } else if (AreaCode.equals(str2)) {
                System.out.println("Hii2");
            }
        }

    } catch (Exception e) {
        System.out.println(e);
    }
}

public static int checktime(int dur, int Rate) {
    int cost = 0;

    // System.out.println(c);
    int min = 60;

    int quotient = dur / min;
    // System.out.println(quotient);

    int reminder = dur % min;
    //  System.out.println(reminder);

    if (reminder > 0) {
        quotient = quotient + 1;
        // System.out.println(quotient);

        // System.out.println(cost);
    }
    cost = quotient * Rate;
    return cost;
}
  • 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-12T20:55:33+00:00Added an answer on June 12, 2026 at 8:55 pm

    Before giving you an answer, you should know some basic things about database access and JDBC:

    • You must not create many connections to access the database in a big operation. If you need to read, insert, update or delete data in a single method, you should use only 1 connection. Opening a connection is a great cost operation. If you don’t notice it yet is because you’re in a single-user (you) environment.

    • Every Statement uses one or more ResultSets. Since you’re a beginner, assume that each Statement will have a single ResultSet. If you modify the data in a Statement, the ResultSet bounded to this Statement will be closed and can’t be used in future operations. That’s why you have the problem (as stated in other answers).

    • If you will execute a SQL statement that will use parameters, use a PreparedStatement. Otherwise, your application will be prone to SQL Injection attack (i.e. a hacker could shut down your database server, you and me know that’s a bad thing to happen).

    • You should close the resources after using them. This means, you should close the ResultSets, Statements and Connection (in this order).

    Based in all these notes, your code will change to this:

    Connection con = null;
    Statement st = null;
    ResultSet rs = null;
    try {
        Class.forName("com.mysql.jdbc.Driver");
        con = DriverManager.getConnection(
                "jdbc:mysql://localhost:3306/asteriskcdrdb", "root", "techsoft");
        st = con.createStatement();
        rs = st.executeQuery("Select * from asteriskcdrdb.sp1");
        while (rs.next()) {
            AreaCode = rs.getString("AreaCode");
            String Pulse = rs.getString("Pulse");
            Rate = rs.getInt("Rate/pulse");
            if (AreaCode.equals(str)) {
                Statement stmt = null;
                ResultSet rst = null;
                PreparedStatement insSt = null;
                try {
                    //using the first connection
                    stmt = con.createStatement();
                    rst = stmt.executeQuery("Select * from cdr where src ='9035020090'");
                    while (rst.next()) {
                        calldate = rst.getString("calldate");
                        clid = rst.getString("clid");
                        src = rst.getString("src");
                        dst = rst.getString("dst");
                        dcontext = rst.getString("dcontext");
                        channel = rst.getString("channel");
                        dstchannel = rst.getString("dstchannel");
                        lastapp = rst.getString("lastapp");
                        lastdata = rst.getString("lastdata");
                        duration = rst.getString("duration");
                        dur = Integer.parseInt(duration);
                        data.add(dur);
                        billsec = rst.getString("billsec");
                        disposition = rst.getString("disposition");
                        amaflags = rst.getString("amaflags");
                        accountcode = rst.getString("accountcode");
                        uniqueid = rst.getString("uniqueid");
                        userfield = rst.getString("userfield");
                        int newcost = checktime(dur, Rate);
                        //every ? is a parameter in the query
                        insSt = con.prepareStatement(
                            "insert into cdrcost (calldate,clid,src,dst,dcontext,channel, dstchannel, lastapp, lastdata,duration,billsec, disposition,amaflags,accountcode,uniqueid, userfield,cdrcost) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
                        //setting every parameter
                        insSt.setObject(1, calldate);
                        insSt.setObject(2, clid);
                        insSt.setObject(3, src);
                        insSt.setObject(4, dst);
                        insSt.setObject(5, dcontext);
                        insSt.setObject(6, channel);
                        insSt.setObject(7, dstchannel);
                        insSt.setObject(8, lastapp);
                        insSt.setObject(9, lastdata);
                        insSt.setObject(10, duration);
                        insSt.setObject(11, billsec);
                        insSt.setObject(12, disposition);
                        insSt.setObject(13, amaflags);
                        insSt.setObject(14, accountcode);
                        insSt.setObject(15, uniqueid);
                        insSt.setObject(16, userfield);
                        insSt.setObject(17, newcost);
                        //executing the insert statement
                        insSt.executeUpdate();
                    }
                } catch (Exception e) {
                    System.out.println(e);
                } finally {
                    //closing the resources in this transaction
                    try {
                        //the insSt statement doesn't have a resultset
                        if (insSt != null) {
                            insSt.close();
                        }
                        //the rst ResultSet is bounded to stmt Statement, it must be closed first
                        if (rst != null) {
                            rst.close();
                        }
                        if (stmt != null) {
                            stmt.close();
                        }
                    } catch (SQLException sqle) {}
                }
            } else if (AreaCode.equals(str2)) {
                System.out.println("Hii2");
            }
        }
    } catch (Exception e) {
        System.out.println(e);
    } finally {
        //closing the resources in this transaction
        //similar logic than the used in the last close block code
        try {
            if (rs != null) {
                rs.close();
            }
            if (st != null) {
                st.close();
            }
            //at the last of all the operations, close the connection
            if (con != null) {
                con.close();
            }
        } catch (SQLException sqle) {}
    }
    

    As a side note, the fact that you’re a beginner doesn’t mean that you should code the thing just to make it work. You should always follow the best practices. IMO it’s good to ask for guidance in these scenarios.

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

Sidebar

Related Questions

I have a table called player and after inserting the data into there, which
I have JDBC code which inserts into a database table by executing a PreparedStatement.
I have a piece of legacy VB6 code that is inserting data into a
I have a form view which is inserting data into a sql-server-2008 database. instead
I have this code here please, which permits me to import data from a
I have a mysqli/php code below where it is suppose to insert data into
I'm using SQL Server 2008 R2 (T-SQL) and have dynamic SQL code, which inserting
I have code which has a drop down list. And when a certain option
I have code which needs to do something like this There is a list
I have code which looks like: private static DirectiveNode CreateInstance(Type nodeType, DirectiveInfo info) {

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.