How to learn how many records i have in database

  • Thread starter Thread starter Salih Ataoz
  • Start date Start date
S

Salih Ataoz

at vb6
there is recordcount property

ex:
msgbox rst.recordcount


at .net
i dont know how to learn how many records i have in
database is there any property to learn it
 
Hi Salih,

There is not one methode,
When it is a dataset by instance you can do
ds.tables(0).rows.count

But there are a lot more possibilities.

I hope it give you an idea?

Cor
 
Back
Top