Is there an easier way of doing this besides loading the data into a DataTable and using Rows.Count or using a MySqlDataReader and iterating through all the resulted rows?

link|improve this question

46% accept rate
You can change the query and use SELECT COUNT(...) instead if you want. – Cicada May 17 '11 at 15:55
feedback

4 Answers

up vote 5 down vote accepted

if you cant change the query easily

SELECT COUNT(*) FROM (<your complete query here>)
link|improve this answer
2  
This is what I was looking for! I tried using this command earlier but due to some reasons it did not work properly. Probably I missed something. Only as an add for those reading the question from now on , in order to work I had to add SELECT COUNT(*) FROM ... AS some_name.:) Thanks for your help! – zalman May 17 '11 at 16:10
feedback

You can execute a query like:

SELECT COUNT(*) FROM MyTable;
link|improve this answer
feedback

You can use the MySQL informational function FOUND_ROWS. Just run it immediately after your SELECT query. Like this:

SELECT FOUND_ROWS()
link|improve this answer
feedback

Exec an

select count(*) from MyTable WHERE <clause>

and get the result with ExecuteScalar()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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