D
Dino L.
Hi,
how can I get query execution time?
I am using ODBC conncetion, and OdbcDataReader
how can I get query execution time?
I am using ODBC conncetion, and OdbcDataReader
how can I get that time?Miha said:Hi
I guess the execution time is time that ExecuteReader consumes.
Miha said:Two easy solutions:
Store DateTime.Now before and compare it to DateTime.Now after the execution
or
do the same with Environment.TickCount.