* Added some connection debugging
parent
c927928245
commit
e399141dfb
|
@ -29,6 +29,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Data;
|
using System.Data;
|
||||||
|
using System.Data.SqlClient;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using libsecondlife;
|
using libsecondlife;
|
||||||
|
@ -71,7 +72,14 @@ namespace OpenSim.Framework.Data.MySQL
|
||||||
username + ";Password=" + password + ";Pooling=" + cpooling + ";";
|
username + ";Password=" + password + ";Pooling=" + cpooling + ";";
|
||||||
dbcon = new MySqlConnection(connectionString);
|
dbcon = new MySqlConnection(connectionString);
|
||||||
|
|
||||||
dbcon.Open();
|
try
|
||||||
|
{
|
||||||
|
dbcon.Open();
|
||||||
|
}
|
||||||
|
catch(Exception e)
|
||||||
|
{
|
||||||
|
throw new Exception( "Connection error while using connection string ["+connectionString+"]", e );
|
||||||
|
}
|
||||||
|
|
||||||
m_log.Info("[MYSQL]: Connection established");
|
m_log.Info("[MYSQL]: Connection established");
|
||||||
}
|
}
|
||||||
|
|
|
@ -1231,7 +1231,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
public void UpdatePermissions(LLUUID AgentID, byte field, uint localID, uint mask, byte addRemTF)
|
public void UpdatePermissions(LLUUID AgentID, byte field, uint localID, uint mask, byte addRemTF)
|
||||||
{
|
{
|
||||||
SceneObjectPart updatePart = GetChildPart(localID);
|
SceneObjectPart updatePart = GetChildPart(localID);
|
||||||
updatePart.UpdatePermissions(AgentID, field, localID, mask, addRemTF);
|
updatePart.UpdatePermissions(AgentID, field, localID, mask, addRemTF);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
Loading…
Reference in New Issue