Thank you kindly, Ahzzmandius for adding

owner_uuid support to the MSSQL data driver.
This commit is contained in:
Charles Krinke
2008-03-02 20:33:46 +00:00
parent 30ebd15926
commit dd8e728abd
3 changed files with 12 additions and 6 deletions

View File

@@ -264,7 +264,12 @@ namespace OpenSim.Framework.Data.MSSQL
regionprofile.regionUserURI = (string)reader["regionUserURI"];
regionprofile.regionUserRecvKey = (string)reader["regionUserRecvKey"];
regionprofile.regionUserSendKey = (string)reader["regionUserSendKey"];
try
{
regionprofile.owner_uuid = new LLUUID((string)reader["owner_uuid"]);
}
catch(Exception ex)
{}
// World Map Addition
string tempRegionMap = reader["regionMapTexture"].ToString();
if (tempRegionMap != String.Empty)
@@ -522,4 +527,4 @@ namespace OpenSim.Framework.Data.MSSQL
dllVersion.Revision);
}
}
}
}