diff options
author | mingchen | 2007-06-06 18:15:12 +0000 |
---|---|---|
committer | mingchen | 2007-06-06 18:15:12 +0000 |
commit | 73a36680bd5dacd4f2630c50115ef4c1f10dc387 (patch) | |
tree | a628ee922e8cac2e4836b025d986cb5806dd820d /OpenSim/OpenSim.Storage/LocalStorageSQLite | |
parent | Changes: (diff) | |
download | opensim-SC_OLD-73a36680bd5dacd4f2630c50115ef4c1f10dc387.zip opensim-SC_OLD-73a36680bd5dacd4f2630c50115ef4c1f10dc387.tar.gz opensim-SC_OLD-73a36680bd5dacd4f2630c50115ef4c1f10dc387.tar.bz2 opensim-SC_OLD-73a36680bd5dacd4f2630c50115ef4c1f10dc387.tar.xz |
*Added new commands ('backup','show parcels','reset parcels')
*Added parcel join support
*Made parcel saving and loading much more efficient
*Fixed bug that would not allow joining of parcel locally in the viewer (gives an error before sending to server)
*Known Issue: Restoring parcels from storage is not working correctly. For now, do a 'reset parcels' to regenerate a standard parcel
Diffstat (limited to 'OpenSim/OpenSim.Storage/LocalStorageSQLite')
-rw-r--r-- | OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs b/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs index 2170898..8106727 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs +++ b/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs | |||
@@ -173,6 +173,18 @@ namespace OpenSim.Storage.LocalStorageSQLite | |||
173 | 173 | ||
174 | } | 174 | } |
175 | 175 | ||
176 | public void SaveParcel(ParcelData parcel) | ||
177 | { | ||
178 | } | ||
179 | |||
180 | public void RemoveParcel(ParcelData parcel) | ||
181 | { | ||
182 | } | ||
183 | |||
184 | public void RemoveAllParcels() | ||
185 | { | ||
186 | } | ||
187 | |||
176 | public void LoadParcels(ILocalStorageParcelReceiver recv) | 188 | public void LoadParcels(ILocalStorageParcelReceiver recv) |
177 | { | 189 | { |
178 | recv.NoParcelDataFromStorage(); | 190 | recv.NoParcelDataFromStorage(); |