mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
* Adds regiondata and estatedata persistence in Sqlite. This commit is actually an assist. 99% of the work was already done by Melanie.
This commit is contained in:
@@ -660,6 +660,7 @@ namespace OpenSim.Data.SQLite
|
||||
terrainDa.Update(ds, "terrain");
|
||||
landDa.Update(ds, "land");
|
||||
landAccessListDa.Update(ds, "landaccesslist");
|
||||
regionSettingsDa.Update(ds, "regionsettings");
|
||||
ds.AcceptChanges();
|
||||
}
|
||||
}
|
||||
@@ -1901,6 +1902,8 @@ namespace OpenSim.Data.SQLite
|
||||
{
|
||||
da.InsertCommand = createInsertCommand("regionsettings", ds.Tables["regionsettings"]);
|
||||
da.InsertCommand.Connection = conn;
|
||||
da.UpdateCommand = createUpdateCommand("regionsettings", "regionUUID=:regionUUID", ds.Tables["regionsettings"]);
|
||||
da.UpdateCommand.Connection = conn;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user