Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to get the number of rows fetched by a database table when it is excuted in java.I am having jdbc connection code with me.but i do not have logic to get the number of rows.can anybody please send me the code to print the number of rows?

expected result: After executing the java code we should get result as:the number of rows in is :__.

share|improve this question
2  
Do you want us to do google for you? – BOSS Jul 8 '11 at 9:42

closed as not a real question by Jeff Mercado, Software Monkey, Ken White, trashgod, YOU Jul 9 '11 at 6:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

You cannot do this. Not even the database knows how many rows it is going to fetch before you have read all of them. This is because they are not first read into a buffer completely (except for very small results), but streamed to the client on demand.

The only thing you can do is count the rows as you read through the result set.

share|improve this answer

You can add a column to the result set that counts all records:

SELECT column_1, 
       column_2,
       count(*) over () as total_count
FROM your_table
share|improve this answer
Where do you see any indication of a specific RDBMS that supports windowing functions (OVER)? And you've been here long enough to know better than to answer non-questions like this; it encourages others like it and increases noise and clutter. – Ken White Jul 9 '11 at 2:10
As most DBMS support this nowadays this can be assumed to be available if no specific DBMS is mentioned. – a_horse_with_no_name Jul 9 '11 at 7:52

In your query, use the count function to get a scalar returning the number of rows e.g.

select count(*) from TABLE_NAME where .....

share|improve this answer

You can use this if the script is executed from your java file

select count(*) from TABLE_NAME

But if you have something written in stored procedure and you are not suppose to change the stored procedure just to add a count then there is no way

share|improve this answer
Please don't answer non-questions like this. It not only is guesswork, but it encourages others to post poorly worded or incomplete questions expecting answers. Asking (via comments) for clarification to make the question clear helps keep down noise and clutter, and therefore help keep SO a useful resource. Thanks. :) – Ken White Jul 9 '11 at 2:13

Not the answer you're looking for? Browse other questions tagged or ask your own question.