Mantis#1796. Thank you kindly, StrawberryFride for a patch that:

Agent table code (INSERT / UPDATE, etc) now added to MSSQL provider.
This commit is contained in:
Charles Krinke
2008-07-20 22:16:50 +00:00
parent 09641bd999
commit 681433c4b7
3 changed files with 72 additions and 20 deletions

View File

@@ -610,7 +610,14 @@ namespace OpenSim.Data.MSSQL
/// <param name="agent">The agent to create</param>
override public void AddNewUserAgent(UserAgentData agent)
{
// Do nothing.
try
{
database.insertAgentRow(agent);
}
catch (Exception e)
{
m_log.Error(e.ToString());
}
}
/// <summary>