Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to count the number of rows from sql table in c#?

How to count the number of rows from sql table in c#? I need to extract some data from my database...

like image 519
Eyalse Avatar asked Nov 23 '13 09:11

Eyalse


1 Answers

You may try like this:

select count(*) from tablename where columname = 'values'

C# code will be something like this:-

public int A()
{
   string stmt = "SELECT COUNT(*) FROM dbo.tablename";
   int count = 0;

   using(SqlConnection thisConnection = new SqlConnection("Data Source=DATASOURCE"))
   {
       using(SqlCommand cmdCount = new SqlCommand(stmt, thisConnection))
       {
           thisConnection.Open();
           count = (int)cmdCount.ExecuteScalar();
       }
   }
   return count;
}
like image 159
Rahul Tripathi Avatar answered Nov 03 '22 21:11

Rahul Tripathi