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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:22:29+00:00 2026-05-17T19:22:29+00:00

Essentially, I have a methods that manipulates data taken from a table to create

  • 0

Essentially, I have a methods that manipulates data taken from a table to create a new object “ZExpert.” ZExpert has parameters int id, int domain, and double ZExpert. I have added a column to the table I took the data from called “Z_Expert_Score.”

I want to put the double ZExpert score from the object in the column Z_Expert_Score, in the row where “Customer_Expert_ID”=domain and “Customer_ID”=id. Here is my attempt

ZExpert[] allZExpert = scrCalc.getzExpertAll();

for(int i = 0; i < allZExpert.length; i++) {
  ZExpert currentZExpert = allZExpert[i]; 
  int id = currentZExpert.getId();
  int domain = currentZExpert.getDomain();
  double ZExpertScore = currentZExpert.getzExpert();

  Statement statement = conn.createStatement();
  statement.executeUpdate ("INSERT INTO CONSUMER_EXPERT_ID 
                             where CONSUMER_EXPERT_ID="+domain+"AND CONSUMER_ID="+id+ "(Z_EXPERT_SCORE) VALUES("+ZExpertScore+")");
}

Thanks in advance!

  • 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-17T19:22:30+00:00Added an answer on May 17, 2026 at 7:22 pm

    You need to use an update SQL statement, not an insert.

    UPDATE CUSTOMER_TABLE SET Z_EXPERT_SCORE = ? WHERE CONSUMER_EXPERT_ID= ? AND CONSUMER_ID= ?
    

    Plus, you should be using a PreparedStatement, not combining Strings together to create the SQL statement.

    ZExpert[] allZExpert = scrCalc.getzExpertAll();
    
    for(int i = 0; i < allZExpert.length; i++) {
      ZExpert currentZExpert = allZExpert[i]; 
      int id = currentZExpert.getId();
      int domain = currentZExpert.getDomain();
      double ZExpertScore = currentZExpert.getzExpert();
    
      String sql = "UPDATE CUSTOMER_TABLE SET Z_EXPERT_SCORE = ? WHERE CONSUMER_EXPERT_ID= ? AND CONSUMER_ID= ?";
      PreparedStatement statement = con.prepareStatement(sql);
      statement.setDouble(1, zExpertScore);
      statement.setInt(2, domain);
      statement.setInt(3, id);
      statement.executeUpdate();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a Sharepoint feature that essentially extends Lists with a new feature, using
I have essentially a survey that is shown, and people answer questions a lot
I have a simple class that essentially just holds some values. I have overridden
If you have to use String.Replace() to replace test 50 times, you essentially have
I am currently trying to manipulate a unordered list with jQuery, essentially I have
I have what is essentially a jagged array of name value pairs - i
Essentially, I have to get a flat file into a database. The flat files
I have a mockup layout for something here . Essentially there are sections, columns
We have a reverse proxy here, running Apache in version 2.2.x Essentially I want
So What I'm essentially trying to do is have something happen 70% of the

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.