diff options
author | mingchen | 2007-06-04 14:09:19 +0000 |
---|---|---|
committer | mingchen | 2007-06-04 14:09:19 +0000 |
commit | 17421593528f4126256dea6d0c844da9c218fdb7 (patch) | |
tree | 69025fb439a08c24787a226b708f7b271610c548 /OpenSim/OpenSim.Storage/LocalStorageSQLite | |
parent | Small bugfix. (diff) | |
download | opensim-SC_OLD-17421593528f4126256dea6d0c844da9c218fdb7.zip opensim-SC_OLD-17421593528f4126256dea6d0c844da9c218fdb7.tar.gz opensim-SC_OLD-17421593528f4126256dea6d0c844da9c218fdb7.tar.bz2 opensim-SC_OLD-17421593528f4126256dea6d0c844da9c218fdb7.tar.xz |
Parcel Manager Changes:
*Added Parcel Backup Support for DB4. Other storages currently do not save
*Added parcelIDList in ParcelManager to speed up parcel fetching at position
*Added ParcelData.cs and ParcelData class for better storage support
*Documentation for parcel added
*2 Parcel Related bug fixes
Diffstat (limited to 'OpenSim/OpenSim.Storage/LocalStorageSQLite')
-rw-r--r-- | OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs b/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs index 368405b..1f4c6be 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs +++ b/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs | |||
@@ -167,6 +167,16 @@ namespace OpenSim.Storage.LocalStorageSQLite | |||
167 | 167 | ||
168 | } | 168 | } |
169 | 169 | ||
170 | public void SaveParcels(ParcelData[] parcel_manager) | ||
171 | { | ||
172 | |||
173 | } | ||
174 | |||
175 | public void LoadParcels(ILocalStorageParcelReceiver recv) | ||
176 | { | ||
177 | recv.NoParcelDataFromStorage(); | ||
178 | } | ||
179 | |||
170 | public void ShutDown() | 180 | public void ShutDown() |
171 | { | 181 | { |
172 | db.Close(); | 182 | db.Close(); |