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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:16:08+00:00 2026-06-14T20:16:08+00:00

I was performing JDBC select query in my web service to return some values

  • 0

I was performing JDBC select query in my web service to return some values from my database. Part of this table is attached to this question. After performing following query:

SELECT * FROM uses WHERE  uses_user_fk='22';

I receive only one row, but in database are two values that meet the query conditions, as you can see in attached picture. Can anyone tell me where I made a mistake. I’m using following JDBC instruction to execute the query

ResultSet tempResultSet = statement.executeQuery(query);

Bellow image of database table uses:
enter image description here

Below the compete method that query the database, argument query is the same as listed earlier “SELECT * FROM uses…”. I should add that the answer for that query is 4, I also try this query without using quotes (uses_user_fk=22) but the result was the same:

protected ArrayList<Integer> queryForIds(String query, String column) throws Exception {
        ArrayList<Integer> ids = new ArrayList<>();
        try {
            Class.forName("com.mysql.jdbc.Driver");
            connect = DriverManager
                    .getConnection(GeneralDatabaseConstants.DATABASE_CONNECTION_URL);
            statement = connect.createStatement();
            ResultSet tempResultSet = statement.executeQuery(query);
            if (tempResultSet.next())
                ids.add(new Integer(tempResultSet.getInt(column)));
        } catch (Exception e) {
            throw e;
        } finally {
            close();
        }
        return ids;
    }
  • 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-14T20:16:09+00:00Added an answer on June 14, 2026 at 8:16 pm

    replace

    if (tempResultSet.next())
    

    with

    while (tempResultSet.next())
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using jdbc to select data from a mysql database. I am performing
After performing EXPLAIN on a query: explain select name from t1 where name like
When performing a query like: select count(*) from myTextTable where tsv @@ plainto_tsquery('english', 'TERM');
When performing many inserts into a database I would usually have code like this:
I'm performing a while loop in C#, this is going through some records being
When performing the default mysqldump on a innodb database, does it perform table locking
The classic way to query an SQL database case-insensitively from Java is as follows:
When performing an insert lets say from C# into a SQL Server table (using
When performing REST POST and PUT, you can include form field values as part
This is an under-performing query that I've been trying to simplify but am at

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.