aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Migration.cs
diff options
context:
space:
mode:
authorDr Scofield2008-06-27 16:58:21 +0000
committerDr Scofield2008-06-27 16:58:21 +0000
commitfeb30217de48f4b3d869bf13453a945a04ee2524 (patch)
tree9da974ca87997d2bdfdda8c027314b01eb8c299a /OpenSim/Data/Migration.cs
parent* restore suppression of mono addins manager warnings (diff)
downloadopensim-SC_OLD-feb30217de48f4b3d869bf13453a945a04ee2524.zip
opensim-SC_OLD-feb30217de48f4b3d869bf13453a945a04ee2524.tar.gz
opensim-SC_OLD-feb30217de48f4b3d869bf13453a945a04ee2524.tar.bz2
opensim-SC_OLD-feb30217de48f4b3d869bf13453a945a04ee2524.tar.xz
dr scofield's warning safari:
* commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
Diffstat (limited to 'OpenSim/Data/Migration.cs')
-rw-r--r--OpenSim/Data/Migration.cs46
1 files changed, 23 insertions, 23 deletions
diff --git a/OpenSim/Data/Migration.cs b/OpenSim/Data/Migration.cs
index 70c7a46..6857c2c 100644
--- a/OpenSim/Data/Migration.cs
+++ b/OpenSim/Data/Migration.cs
@@ -74,13 +74,13 @@ namespace OpenSim.Data
74 74
75 private string _type; 75 private string _type;
76 private DbConnection _conn; 76 private DbConnection _conn;
77 private string _subtype; 77 // private string _subtype;
78 private Assembly _assem; 78 private Assembly _assem;
79 private Regex _match; 79 private Regex _match;
80 80
81 private static readonly string _migrations_create = "create table migrations(name varchar(100), version int)"; 81 private static readonly string _migrations_create = "create table migrations(name varchar(100), version int)";
82 private static readonly string _migrations_init = "insert into migrations values('migrations', 1)"; 82 // private static readonly string _migrations_init = "insert into migrations values('migrations', 1)";
83 private static readonly string _migrations_find = "select version from migrations where name='migrations'"; 83 // private static readonly string _migrations_find = "select version from migrations where name='migrations'";
84 84
85 public Migration(DbConnection conn, Assembly assem, string type) 85 public Migration(DbConnection conn, Assembly assem, string type)
86 { 86 {
@@ -150,23 +150,23 @@ namespace OpenSim.Data
150 } 150 }
151 } 151 }
152 152
153 private int MaxVersion() 153 // private int MaxVersion()
154 { 154 // {
155 int max = 0; 155 // int max = 0;
156 string[] names = _assem.GetManifestResourceNames(); 156 // string[] names = _assem.GetManifestResourceNames();
157 157
158 foreach (string s in names) 158 // foreach (string s in names)
159 { 159 // {
160 Match m = _match.Match(s); 160 // Match m = _match.Match(s);
161 if (m.Success) 161 // if (m.Success)
162 { 162 // {
163 int MigrationVersion = int.Parse(m.Groups[1].ToString()); 163 // int MigrationVersion = int.Parse(m.Groups[1].ToString());
164 if (MigrationVersion > max) 164 // if (MigrationVersion > max)
165 max = MigrationVersion; 165 // max = MigrationVersion;
166 } 166 // }
167 } 167 // }
168 return max; 168 // return max;
169 } 169 // }
170 170
171 public int Version 171 public int Version
172 { 172 {
@@ -222,10 +222,10 @@ namespace OpenSim.Data
222 cmd.ExecuteNonQuery(); 222 cmd.ExecuteNonQuery();
223 } 223 }
224 224
225 private SortedList<int, string> GetAllMigrations() 225 // private SortedList<int, string> GetAllMigrations()
226 { 226 // {
227 return GetMigrationsAfter(0); 227 // return GetMigrationsAfter(0);
228 } 228 // }
229 229
230 private SortedList<int, string> GetMigrationsAfter(int after) 230 private SortedList<int, string> GetMigrationsAfter(int after)
231 { 231 {