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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T03:33:38+00:00 2026-06-18T03:33:38+00:00

I try to do the like counter for forum threads. This is my code:

  • 0

I try to do the like counter for forum threads. This is my code:

When like button is on click, it will insert the value into database.

public void submitLike(ActionEvent e) {
    int count = 0;
    int newCount = count + 1;
    eForumLikeDislike amount = new eForumLikeDislike(userName,topicId,newCount);
    amount.likeCounter();
}

The SQL statement which I insert like when it is on click.

 public void SetUpLikeAmount() {
    int likes = 0;
    ArrayList <Integer> likeArray = new ArrayList <Integer>();
    for (int count = 0; count < likeArray.size();count++){
    // Set Up Database Source
    db.setUp("IT Innovation Project");
    String sql = "Select likeDislike_likes from forumLikeDislike WHERE topic_id = "
            + topicId + "";
    ResultSet resultSet = null;
    // Call readRequest to get the result
    resultSet = db.readRequest(sql);
    try {
        while (resultSet.next()) {
            likeArray.add(Integer.parseInt(resultSet.getString("likeDislike_likes")));
        }
        resultSet.close();
    } catch (Exception e) {
        System.out.println(e);
    }
    likes += likeArray.get(count);
    }
    jLabel_like.setText(Integer.toString(likes));
}

The method which I try to display the total likes of certain thread.

public void SetUpLikeAmount() {
    int likes = 0;
    ArrayList <Integer> likeArray = new ArrayList <Integer>();
    for (int count = 0; count < likeArray.size();count++) {
        // Set Up Database Source
        db.setUp("IT Innovation Project");
        String sql = "Select likeDislike_likes from forumLikeDislike WHERE topic_id = "
                     + topicId + "";
        ResultSet resultSet = null;
        // Call readRequest to get the result
        resultSet = db.readRequest(sql);
        try {
            while (resultSet.next()) {
                likes = Integer.parseInt(resultSet.getString("likeDislike_likes"));
                likes += likeArray.get(count);
            }
            resultSet.close();
        } catch (Exception e) {
            System.out.println(e);
        }

    }
    jLabel_like.setText(Integer.toString(likes));
}

However, the amount keep returning me 0. Is there something wrong? How can I fix it?
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-06-18T03:33:39+00:00Added an answer on June 18, 2026 at 3:33 am

    If you are able to change your database design, do so. Specifically, drop the field likeDislike_likes from table forumLikeDislike.

    Once you have done that (or even if you don’t), you can replace this query,

    Select likeDislike_likes 
    from forumLikeDislike 
    WHERE topic_id = the topicId variable you submit
    

    with this query:

    select count(*) likes
    from forumLikeDislike 
    WHERE topic_id = the topicId variable you submit
    

    It will return one row with the answer you want.

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

Sidebar

Related Questions

I have some code to update a database table that looks like try {
I would like to try to assign a variable value to input hidden field
Let's say we have some code like this running in the separate thread: private
I have a method like this: public int getIncrement() { String extractFolder = /mnt/sdcard/MyFolder;
i have a sub that will try to get random foods in the database,
I have a class like this class SomeClass: def doSomething(self): self.counter = 50 I
Yes, yet another facebook like button error. Read a dozen of threads about those
I would like to insert a time counter inside a game. If the time
I would like to try Silex but i've some questions. I know to use
I'd like to try out different regexes for the formatlistpat option. Any suggestions as

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.