diff options
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLDataStore.cs')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLDataStore.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLDataStore.cs b/OpenSim/Data/MSSQL/MSSQLDataStore.cs index c339d62..6bf619a 100644 --- a/OpenSim/Data/MSSQL/MSSQLDataStore.cs +++ b/OpenSim/Data/MSSQL/MSSQLDataStore.cs | |||
@@ -492,6 +492,22 @@ namespace OpenSim.Data.MSSQL | |||
492 | return landDataForRegion; | 492 | return landDataForRegion; |
493 | } | 493 | } |
494 | 494 | ||
495 | public List<RegionBanListItem> LoadRegionBanList(LLUUID regionUUID) | ||
496 | { | ||
497 | List<RegionBanListItem> regionbanlist = new List<RegionBanListItem>(); | ||
498 | return regionbanlist; | ||
499 | } | ||
500 | |||
501 | public void AddToRegionBanlist(RegionBanListItem item) | ||
502 | { | ||
503 | |||
504 | } | ||
505 | |||
506 | public void RemoveFromRegionBanlist(RegionBanListItem item) | ||
507 | { | ||
508 | |||
509 | } | ||
510 | |||
495 | public void Commit() | 511 | public void Commit() |
496 | { | 512 | { |
497 | if (m_connection.State != ConnectionState.Open) | 513 | if (m_connection.State != ConnectionState.Open) |