D Dino L. Nov 2, 2004 #1 Hi, how can I get query execution time? I am using ODBC conncetion, and OdbcDataReader
M Miha Markic [MVP C#] Nov 2, 2004 #2 Hi I guess the execution time is time that ExecuteReader consumes.
D Dino L. Nov 2, 2004 #3 Miha said: Hi I guess the execution time is time that ExecuteReader consumes. Click to expand... how can I get that time?
Miha said: Hi I guess the execution time is time that ExecuteReader consumes. Click to expand... how can I get that time?
M Miha Markic [MVP C#] Nov 2, 2004 #4 Two easy solutions: Store DateTime.Now before and compare it to DateTime.Now after the execution or do the same with Environment.TickCount.
Two easy solutions: Store DateTime.Now before and compare it to DateTime.Now after the execution or do the same with Environment.TickCount.
D Dino L. Nov 2, 2004 #5 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. Click to expand... Hvala, thanks
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. Click to expand... Hvala, thanks
M Miha Markic [MVP C#] Nov 2, 2004 #6 Hvala, Click to expand... , Ni za kaj. thanks Click to expand... You're welcome.