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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:25:51+00:00 2026-06-11T22:25:51+00:00

I am trying to update a column in already exists MySQL table. The values

  • 0

I am trying to update a column in already exists MySQL table. The values must be read from a text file, and then they must be inserted into the specified column.

I have tried the following:

int counter=0;
        while((fileLine=in.readLine())!=null) 
        { 
            System.out.println("Line read is: "+fileLine);

                //execute db insertion
                try {
                    //insert in the database
                    Query= "update db.table set col4=?";    //database
                    preparedStmt3 = DBConnection.con.prepareStatement(Query); 
                    preparedStmt3.setString (1, fileLine);
                    preparedStmt3.executeUpdate();
                    System.out.println("Complete update statement for row: "+counter);
                    counter++;
                } catch (Exception e) {
                    System.out.println("DB_Error:_"+ e.toString());
                }

        } //end while loop 

I have tried to output fileLine value and it seems correct and change correctly with every loop round. But, after I run the program and check the database, I find that the value inserted is the last line only (and this repeated in all records, it is not what I am supposed to do, which is insert every line in records consequently). what is the cause for this problem ?

EDIT:
The text file contains the following lines:
aaa
bbb
ccc
ddd
eee
fff

The run output after I added some printline statements to see debug is as the following:

enter image description here

while the DB contains the last line inserted only

enter image description here

  • 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-11T22:25:52+00:00Added an answer on June 11, 2026 at 10:25 pm

    try this,

    Connection conn = ConnectionBean.getInstance().getDBConnection();
    int counter=0;
    String fileLine;
    BufferedReader in;
    String query1 = "select id from test"; // get all the id's from the table you wanna do  the update
    ArrayList<Integer> al = new ArrayList<Integer>(); // store them in an arraylist
    try {
    PreparedStatement stmnt = conn.prepareStatement(query1);
    ResultSet rs = stmnt.executeQuery();
    while(rs.next()) {
        al.add(rs.getInt("id"));
    }
    }
    catch(Exception ex) {
        ex.printStackTrace();
    }
    
    try {
        in = new BufferedReader(new FileReader("file1.txt"));
        int h=1;
        while((fileLine=in.readLine())!=null && al.size()>0)  
        {   
    
            String query="UPDATE chaitu.test SET col=? WHERE id="+h ;
            PreparedStatement statement = conn.prepareStatement(query);
    
            statement.setString(1, fileLine);
            statement.executeUpdate();
            h++;
        } //end while loo
    
    
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (SQLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to update a column in my table which was last inserted.
I'm trying to UPDATE a column for a user, so that they can only
I'm trying to update the comments column in one table (Entries), when a new
I am trying to update all records in a column so that they start
I am trying to update values in a column like the following code block
I am trying to update a #temp table from a linked server using a
I'm trying to update a column to a max value, but only when grouped
I am trying to update a column based on another column in the same
I am trying to update the value of a column where it matches a
I am trying to update the status of a column, by checking two joined

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.