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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T11:13:24+00:00 2026-06-14T11:13:24+00:00

In mysql command line, when i give the command: select count(*) tables from users;

  • 0

In mysql command line, when i give the command:
select count(*) tables from users;
it works correctly. It gives me the size of the table.

But, i want to take the result in Java file.Thus i write in Java file the below code.But it doesn’t work

public int f()
{
   ResultSet rs;
   int i;
   String query = "select count(*) tables from users";
   Statement st = this.con.createStatement();     //error
   rs = st.executeQuery(query);                   //error
   if(rs.next())                       //error
   {                   //error
    i = rs.getInt(1);                     //error
   }
  return i;    //error
}

How can i get the size of table in my Java file?

  • 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-14T11:13:27+00:00Added an answer on June 14, 2026 at 11:13 am

    you never checked if the resultSet has data using its next() method.

    From ResultSet API:

    The next method moves the cursor to the next row

    public int f() throws SQLException {
    //rest of your code
    rs = st.executeQuery(query);
    if(rs.next()){
    i = rs.getInt(1);  
    }
    //rest of your code
    }
    

    also ResultSet has getInt() method not GetInt(), java is case sensitive.

    EDIT: you have to handle or declare SQLException(checked exception) in your code. Connection.createStatement() would throw SQLException.

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

Sidebar

Related Questions

creating users through mysql admin, but unable to login mysql command line following on-line
I run several queries from mysql command line on my linux box (Fedora Os).
UPDATE queries work fine from the mysql command line, for any user. However, when
Everytime I try to create the following table in MySQL command line: CREATE TABLE
I'm using Mysql's command-line client in Screen/Tmux, from Bash in OSX's Terminal.app. When using
I have a linux shell script that when run from command line works perfectly
I ran the following query in MySQL command line and the tables were created.
How to give a specific .my.cnf config file to the mysql command line? $
This mysql command line return me: count(*) 19 . It's a big problem for
Hello I'm trying to take backup from mysql command line client. I'm using mysqldump

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.