From 1de643dffaf5627bb0cddbb53cbfaa6d47ef8b4c Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Mon, 7 Jun 2010 15:20:32 +0000 Subject: [PATCH] Fixed another bug in MySQLConnector --- MySQLConnector/Connection.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MySQLConnector/Connection.cs b/MySQLConnector/Connection.cs index 6209169..80d53dd 100644 --- a/MySQLConnector/Connection.cs +++ b/MySQLConnector/Connection.cs @@ -19,6 +19,7 @@ namespace FLocal.MySQLConnector { this.connection = new MySqlConnection(connectionString); this.connection.Open(); this.connectionString = connectionString; + this.transactions = new HashSet(); } internal MySqlConnection createConnection() {