diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs (renamed from OpenSim/Data/SQLiteLegacy/SQLiteRegionData.cs) | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/OpenSim/Data/SQLiteLegacy/SQLiteRegionData.cs b/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs index b5ce4c0..2dde926 100644 --- a/OpenSim/Data/SQLiteLegacy/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs | |||
@@ -43,7 +43,7 @@ namespace OpenSim.Data.SQLiteLegacy | |||
43 | /// <summary> | 43 | /// <summary> |
44 | /// A RegionData Interface to the SQLite database | 44 | /// A RegionData Interface to the SQLite database |
45 | /// </summary> | 45 | /// </summary> |
46 | public class SQLiteRegionData : IRegionDataStore | 46 | public class SQLiteSimulationData : ISimulationDataStore |
47 | { | 47 | { |
48 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 48 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
49 | 49 | ||
@@ -69,6 +69,15 @@ namespace OpenSim.Data.SQLiteLegacy | |||
69 | 69 | ||
70 | private String m_connectionString; | 70 | private String m_connectionString; |
71 | 71 | ||
72 | public SQLiteSimulationData() | ||
73 | { | ||
74 | } | ||
75 | |||
76 | public SQLiteSimulationData(string connectionString) | ||
77 | { | ||
78 | Initialise(connectionString); | ||
79 | } | ||
80 | |||
72 | // Temporary attribute while this is experimental | 81 | // Temporary attribute while this is experimental |
73 | 82 | ||
74 | /*********************************************************************** | 83 | /*********************************************************************** |
@@ -78,7 +87,6 @@ namespace OpenSim.Data.SQLiteLegacy | |||
78 | **********************************************************************/ | 87 | **********************************************************************/ |
79 | 88 | ||
80 | /// <summary> | 89 | /// <summary> |
81 | /// See IRegionDataStore | ||
82 | /// <list type="bullet"> | 90 | /// <list type="bullet"> |
83 | /// <item>Initialises RegionData Interface</item> | 91 | /// <item>Initialises RegionData Interface</item> |
84 | /// <item>Loads and initialises a new SQLite connection and maintains it.</item> | 92 | /// <item>Loads and initialises a new SQLite connection and maintains it.</item> |
@@ -1888,7 +1896,6 @@ namespace OpenSim.Data.SQLiteLegacy | |||
1888 | } | 1896 | } |
1889 | 1897 | ||
1890 | /// <summary> | 1898 | /// <summary> |
1891 | /// see IRegionDatastore | ||
1892 | /// </summary> | 1899 | /// </summary> |
1893 | /// <param name="primID"></param> | 1900 | /// <param name="primID"></param> |
1894 | /// <param name="items"></param> | 1901 | /// <param name="items"></param> |