aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Data.MySQL/MySQLManager.cs10
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 @@
29using System; 29using System;
30using System.Collections.Generic; 30using System.Collections.Generic;
31using System.Data; 31using System.Data;
32using System.Data.SqlClient;
32using System.IO; 33using System.IO;
33using System.Reflection; 34using System.Reflection;
34using libsecondlife; 35using 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 }