aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorMelanie2012-08-15 01:08:30 +0200
committerMelanie2012-08-15 01:08:30 +0200
commit7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f (patch)
treeb069ddb4607d598ff93b60103ba5756cca3520ae /OpenSim/Data
parentRemove NPC debug spam (diff)
downloadopensim-SC-7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f.zip
opensim-SC-7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f.tar.gz
opensim-SC-7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f.tar.bz2
opensim-SC-7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f.tar.xz
Add a skeleton for a name value storage associated with regions
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MSSQL/MSSQLSimulationData.cs13
-rw-r--r--OpenSim/Data/MySQL/MySQLSimulationData.cs13
-rw-r--r--OpenSim/Data/MySQL/Resources/RegionStore.migrations7
-rw-r--r--OpenSim/Data/Null/NullSimulationData.cs13
-rw-r--r--OpenSim/Data/SQLite/SQLiteSimulationData.cs13
5 files changed, 59 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLSimulationData.cs b/OpenSim/Data/MSSQL/MSSQLSimulationData.cs
index 47fb6d7..5bb6ec9 100644
--- a/OpenSim/Data/MSSQL/MSSQLSimulationData.cs
+++ b/OpenSim/Data/MSSQL/MSSQLSimulationData.cs
@@ -2207,5 +2207,18 @@ VALUES
2207 { 2207 {
2208 return new UUID[0]; 2208 return new UUID[0];
2209 } 2209 }
2210
2211 public void SaveExtra(UUID regionID, string name, string value)
2212 {
2213 }
2214
2215 public void RemoveExtra(UUID regionID, string name)
2216 {
2217 }
2218
2219 public Dictionary<string, string> GetExtra(UUID regionID)
2220 {
2221 return null;
2222 }
2210 } 2223 }
2211} 2224}
diff --git a/OpenSim/Data/MySQL/MySQLSimulationData.cs b/OpenSim/Data/MySQL/MySQLSimulationData.cs
index 29bd6b6..03cfd02 100644
--- a/OpenSim/Data/MySQL/MySQLSimulationData.cs
+++ b/OpenSim/Data/MySQL/MySQLSimulationData.cs
@@ -2094,5 +2094,18 @@ namespace OpenSim.Data.MySQL
2094 } 2094 }
2095 } 2095 }
2096 } 2096 }
2097
2098 public void SaveExtra(UUID regionID, string name, string val)
2099 {
2100 }
2101
2102 public void RemoveExtra(UUID regionID, string name)
2103 {
2104 }
2105
2106 public Dictionary<string, string> GetExtra(UUID regionID)
2107 {
2108 return null;
2109 }
2097 } 2110 }
2098} 2111}
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
index db0d0ec..c4b0832 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -895,3 +895,10 @@ CREATE TABLE `regionenvironment` (
895 895
896COMMIT; 896COMMIT;
897 897
898:VERSION 45
899
900BEGIN;
901
902CREATE TABLE `regionextra` (`RegionID` char(36) not null, `Name` varchar(32) not null, `value` text, primary key(`RegionID`, `Name`));
903
904COMMIT;
diff --git a/OpenSim/Data/Null/NullSimulationData.cs b/OpenSim/Data/Null/NullSimulationData.cs
index a39ef0b..e7e5c41 100644
--- a/OpenSim/Data/Null/NullSimulationData.cs
+++ b/OpenSim/Data/Null/NullSimulationData.cs
@@ -156,5 +156,18 @@ namespace OpenSim.Data.Null
156 { 156 {
157 return new UUID[0]; 157 return new UUID[0];
158 } 158 }
159
160 public void SaveExtra(UUID regionID, string name, string value)
161 {
162 }
163
164 public void RemoveExtra(UUID regionID, string name)
165 {
166 }
167
168 public Dictionary<string, string> GetExtra(UUID regionID)
169 {
170 return null;
171 }
159 } 172 }
160} 173}
diff --git a/OpenSim/Data/SQLite/SQLiteSimulationData.cs b/OpenSim/Data/SQLite/SQLiteSimulationData.cs
index 9175a8f..431709f 100644
--- a/OpenSim/Data/SQLite/SQLiteSimulationData.cs
+++ b/OpenSim/Data/SQLite/SQLiteSimulationData.cs
@@ -2894,5 +2894,18 @@ namespace OpenSim.Data.SQLite
2894 { 2894 {
2895 return new UUID[0]; 2895 return new UUID[0];
2896 } 2896 }
2897
2898 public void SaveExtra(UUID regionID, string name, string value)
2899 {
2900 }
2901
2902 public void RemoveExtra(UUID regionID, string name)
2903 {
2904 }
2905
2906 public Dictionary<string, string> GetExtra(UUID regionID)
2907 {
2908 return null;
2909 }
2897 } 2910 }
2898} 2911}