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?
|
feedback
|
|
if you cant change the query easily
| |||||
feedback
|
|
You can use the MySQL informational function
| |||
|
feedback
|
|
Exec an
and get the result with ExecuteScalar() | |||
|
feedback
|
SELECT COUNT(...)instead if you want. – Cicada May 17 '11 at 15:55