aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite
diff options
context:
space:
mode:
authormingchen2007-12-17 03:49:13 +0000
committermingchen2007-12-17 03:49:13 +0000
commitd845da215f8d30ef3f34a3c207fb892c815d1fac (patch)
treea1714f51422e4b5639d28459569d6235c86751d1 /OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite
parentAgain, thanks to Alondria for: (diff)
downloadopensim-SC_OLD-d845da215f8d30ef3f34a3c207fb892c815d1fac.zip
opensim-SC_OLD-d845da215f8d30ef3f34a3c207fb892c815d1fac.tar.gz
opensim-SC_OLD-d845da215f8d30ef3f34a3c207fb892c815d1fac.tar.bz2
opensim-SC_OLD-d845da215f8d30ef3f34a3c207fb892c815d1fac.tar.xz
*Land has now been linked to the StorageManager. Next step is to fill in the functions for the different datastore interfaces for Land Objects.
Diffstat (limited to 'OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite')
-rw-r--r--OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs
index 5285b82..0a55582 100644
--- a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs
+++ b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs
@@ -346,17 +346,17 @@ namespace OpenSim.DataStore.MonoSqlite
346 } 346 }
347 } 347 }
348 348
349 public void RemoveLandObject(uint id) 349 public void RemoveLandObject(uint id, LLUUID regionUUID)
350 { 350 {
351 } 351 }
352 352
353 public void StoreParcel(Land parcel) 353 public void StoreLandObject(Land parcel, LLUUID regionUUID)
354 { 354 {
355 } 355 }
356 356
357 public List<Land> LoadLandObjects() 357 public List<Framework.LandData> LoadLandObjects(LLUUID regionUUID)
358 { 358 {
359 return new List<Land>(); 359 return new List<LandData>();
360 } 360 }
361 361
362 public void Commit() 362 public void Commit()