in a query, how can i find out how long the query took ?
Printable View
in a query, how can i find out how long the query took ?
I'm not sure in MySQL, but in code, you could do...
Code:x = Now
objConn.Execute "UPDATE Mytable bla bla bla"
MsgBox "Query took " & (Now - x) & "ms."