I have a class with a MySqlConnection object that I reuse across my application
public class MySqlWrapper : IDbConnection
{
MySqlConnection _connection = new MySqlConnection();
}
I have a few methods using this
public void UseDB()
{
_connection.Open();
// Do highly important stuff
_connection.Close();
}
It does happen that Open() call fails because the connection is already opened.
Yes, all of my Open() have a matching Close()
Now a solution I've found would be to clone the connection everytime i use it
MySqlConnection connClone = _connection.Clone();
connClone.Open();
For some reason this snippet smells bad code. Is it safe to use? Is there another way I do not know off to handle open/close ?