I have a class to connect to a MySQL database, execute a stored procedure and close the connection. In an application that is giving some performance problems I have the following code:
public void execute_NonQuery_procedure(string StoredProcedure, Hashtable hParams) { MySqlConnection oConnection = new MySqlConnection();
try { //***** Ontenemos la cadena de conexión *****// string sConnection = ConfigurationManager.AppSettings[DB]; oConnection = new MyS
View Complete Post