diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/MySQLManager.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Framework/Data.MySQL/MySQLManager.cs b/OpenSim/Framework/Data.MySQL/MySQLManager.cs index f70b505..e763bfa 100644 --- a/OpenSim/Framework/Data.MySQL/MySQLManager.cs +++ b/OpenSim/Framework/Data.MySQL/MySQLManager.cs | |||
@@ -29,6 +29,7 @@ | |||
29 | using System; | 29 | using System; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Data; | 31 | using System.Data; |
32 | using System.Data.SqlClient; | ||
32 | using System.IO; | 33 | using System.IO; |
33 | using System.Reflection; | 34 | using System.Reflection; |
34 | using libsecondlife; | 35 | using libsecondlife; |
@@ -71,7 +72,14 @@ namespace OpenSim.Framework.Data.MySQL | |||
71 | username + ";Password=" + password + ";Pooling=" + cpooling + ";"; | 72 | username + ";Password=" + password + ";Pooling=" + cpooling + ";"; |
72 | dbcon = new MySqlConnection(connectionString); | 73 | dbcon = new MySqlConnection(connectionString); |
73 | 74 | ||
74 | dbcon.Open(); | 75 | try |
76 | { | ||
77 | dbcon.Open(); | ||
78 | } | ||
79 | catch(Exception e) | ||
80 | { | ||
81 | throw new Exception( "Connection error while using connection string ["+connectionString+"]", e ); | ||
82 | } | ||
75 | 83 | ||
76 | m_log.Info("[MYSQL]: Connection established"); | 84 | m_log.Info("[MYSQL]: Connection established"); |
77 | } | 85 | } |