I can get all table names but how to get how many are there ?
Printable View
I can get all table names but how to get how many are there ?
Do you mean of a database? Are you using the GetSchema method thing? If so then aren't the tables each a row in the Schema table, if so then just get the Row.Count of that table after its filled.
That's exactly what I'm doing and Row.Count solved the problem .
Thanks Edneeis :D