diff options
Diffstat (limited to 'OpenSim/Region/Storage')
-rw-r--r-- | OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs index b7919e0..145d5eb 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs | |||
@@ -313,6 +313,23 @@ namespace OpenSim.DataStore.MSSQL | |||
313 | return new List<LandData>(); | 313 | return new List<LandData>(); |
314 | } | 314 | } |
315 | 315 | ||
316 | public List<RegionBanListItem> LoadRegionBanList(LLUUID regionUUID) | ||
317 | { | ||
318 | List<RegionBanListItem> regionbanlist = new List<RegionBanListItem>(); | ||
319 | return regionbanlist; | ||
320 | } | ||
321 | |||
322 | public void AddToRegionBanlist(RegionBanListItem item) | ||
323 | { | ||
324 | |||
325 | } | ||
326 | |||
327 | public void RemoveFromRegionBanlist(RegionBanListItem item) | ||
328 | { | ||
329 | |||
330 | } | ||
331 | |||
332 | |||
316 | public void Commit() | 333 | public void Commit() |
317 | { | 334 | { |
318 | lock (ds) | 335 | lock (ds) |