aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.MySQL
diff options
context:
space:
mode:
authorlbsa712008-02-11 14:09:35 +0000
committerlbsa712008-02-11 14:09:35 +0000
commite399141dfb38b7065e68390cc73586846b2206d1 (patch)
tree39976e86f8f51ad2ab58e2d77bd2634120fe97d1 /OpenSim/Framework/Data.MySQL
parent* some refactoring on permissions (diff)
downloadopensim-SC_OLD-e399141dfb38b7065e68390cc73586846b2206d1.zip
opensim-SC_OLD-e399141dfb38b7065e68390cc73586846b2206d1.tar.gz
opensim-SC_OLD-e399141dfb38b7065e68390cc73586846b2206d1.tar.bz2
opensim-SC_OLD-e399141dfb38b7065e68390cc73586846b2206d1.tar.xz
* Added some connection debugging
Diffstat (limited to 'OpenSim/Framework/Data.MySQL')
-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 }