* Stop bothering to populate and retrieve the parent local ids for MSSQL, as was done for SQLite and MySQL in r7586
* This may resolve http://opensimulator.org/mantis/view.php?id=29390.6.2-post-fixes
parent
bf65290062
commit
e98385dd74
|
@ -930,7 +930,6 @@ VALUES
|
|||
prim.UUID = new UUID((String)primRow["UUID"]);
|
||||
// explicit conversion of integers is required, which sort
|
||||
// of sucks. No idea if there is a shortcut here or not.
|
||||
prim.ParentID = (uint)Convert.ToInt32(primRow["ParentID"]);
|
||||
prim.CreationDate = Convert.ToInt32(primRow["CreationDate"]);
|
||||
prim.Name = (String)primRow["Name"];
|
||||
// various text fields
|
||||
|
@ -1307,7 +1306,6 @@ VALUES
|
|||
{
|
||||
row["UUID"] = prim.UUID.ToString();
|
||||
row["RegionUUID"] = regionUUID.ToString();
|
||||
row["ParentID"] = (int)prim.ParentID;
|
||||
row["CreationDate"] = prim.CreationDate;
|
||||
row["Name"] = prim.Name;
|
||||
row["SceneGroupID"] = sceneGroupID.ToString();
|
||||
|
|
Loading…
Reference in New Issue