Pretty straight forward question.
How can i get the time for my application to get a connection from the connection pool ?
public static OracleConnection GetOracleConnection() { OracleConnection myConnection = new OracleConnection(); myConnection.ConnectionString = "something"; return myConnection; }
//SFP