I need to find out the query execution time from the front end .Where should I insert the code for that.Please help..
I am using the bleow query:
OracleConnection con = new OracleConnection(ConnStr);
con.Open();
OracleCommand cmd = new OracleCommand("Stored_Proc",con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add();
....................
................
OracleDataAdapter oda = new OracleDataAdapter
(cmd);
View Complete Post