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

  • Home
  • SEARCH
  • 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 7514143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T00:24:28+00:00 2026-05-30T00:24:28+00:00

i am trying to insert data from excel sheet into database in java. for

  • 0

i am trying to insert data from excel sheet into database in java. for that i have connected both the database using ODBC. excelsheet has 2 columns cname and title.
after querying the Excel spreadsheet i stored the resultSet values of cname and title into arraylist.

      List Cname = new  ArrayList();
      List Title=new ArrayList();

            Cname.add(rs.getString("Cname"));
            Title.add(rs.getString("Title"));

this will result like this

      [aaa, bbb,cccc, dddd]
      [tree,human,animal,bird]

when i try to insert this into SQL database using insert query it is getting stored like this.

    statement1.executeUpdate("INSERT INTO dbo.company (Cname,Title)  SELECT      
   '"+Cname+"','"+Title+"'");


       Cname                               Title

    [aaa, bbb,cccc, dddd]        [tree,human,animal,bird]

but i want to store this as

      Cname               Title
     ___________________________
      aaa                  tree
      bbb                 human
      cccc                animal
      ddd                  bird

how do i do this???pls help to solve in this.

  • 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-05-30T00:24:29+00:00Added an answer on May 30, 2026 at 12:24 am

    You’ll have to insert/update the list values, actually you’re inserting the string representations of the entire lists..

    Assuming, both lists do exist (not null) and have the same length, then this is a trivial solution:

    for (int i = 0; i < Cname.size(); i++ {
       statement1.executeUpdate("INSERT INTO dbo.company (Cname,Title)  SELECT      
         '"+Cname.get(i)+"','"+Title.get(i)+"'");
    }
    

    Note – every java class has an implementation of the toString() method, and that method is called, when you “use an object as a string”, like in the expression to create the SQL statement. For lists, the method returns a String that simply includes the (String-representations of) the list element in brackets.

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

Sidebar

Related Questions

I have a form that is trying to insert some data into an SQL
I'm trying to insert some data into SQL from Excel VBA. The SQL commands
I am trying to insert data from a csv file into mysql using BigDump.
I'm trying to insert some data from a proprietary JSON database into MongoDB for
I am trying to insert into Table A, unique data from Table B that
I am trying to select data from two tables and insert it into another
The data I am trying to insert is from a database, and while inserting
I am trying to insert data from one of my existing table into another
I have a Microsoft SQL database, where i am trying to insert some data.
I'm getting this error when trying to insert data from a form into a

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.