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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T21:52:37+00:00 2026-06-11T21:52:37+00:00

I have a Java program that reads lines from text file. I want to

  • 0

I have a Java program that reads lines from text file. I want to insert read lines into a columns for already available records in a table created in MySQL database.

The table that is already available consists of 4 columns.
col1: pk, and auto increment number
col2: text
col3: int
col4: text

Col4 is the value to be added after reading each line from the text file. I tried to use the following :

Query= "insert into db.table values (?)";
preparedStmt3 = DBConnection.con.prepareStatement(Query);

Then after I read the line from the text file, I do the following;

 preparedStmt3.setString (3, line);

The column that I need to insert in is the 4th column. However, I get the following error:

DB_Error:_java.sql.SQLException: Parameter index out of range (3 > number of parameters, which is 1).

My Question: How can I insert values in a specific column in MySQL database using Java wihtout affecting any value in the records (all other columns including the pk auto increment values are already inserted and need not to be changed at all).

  • 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-11T21:52:38+00:00Added an answer on June 11, 2026 at 9:52 pm

    I do not understand why have you used 3 as an argument to setString() The first argument of that function is the placeholder of parameter – the question mark in the query – this place holder starts from 1 and you only have a single placeholder.

    Try,

    preparedStmt3.setString (1, line);
    

    because you only have a single place holder in your query. If this is not what you seek then rewrite your query. In fact, if you read the exception message, you will realise it:
    index out of range (3 > number of parameters, which is 1).

    If you wish to insert multiple values, construct your query as:

    `INSERT INTO table(c1, c2, c3) VALUES(?, ?, ?)`
    

    and then

    prepStatement.setString(1, val); // Sets value for c1 
    prepStatement.setString(2, val); // Sets value for c2
    prepStatement.setString(3, val); // Sets value for c3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a small Java program that reads list of IPs from text file
I have a simple Java program that reads in a text file, splits it
I have a Java program that needs to read from some file. The file
I have a program that reads in lines from a file (with two lines)
I have a small java program that reads a file in, in eclipse i
I'm learning java and I have made simple program that simply reads value from
I have written a program in Java to read in a text file of
I have created a little program that reads in a Java file and feeds
I'm making a program in Java that reads in some stuff from a file
I have some text configuration file that need to be read by my program.

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.