diff options
author | Sean Dague | 2008-01-09 18:41:20 +0000 |
---|---|---|
committer | Sean Dague | 2008-01-09 18:41:20 +0000 |
commit | 411d06c94e0b8e696eb6b19019f46079927151f2 (patch) | |
tree | e26dbe236ccc791e92b808e4b6ae63b0657b4f68 /OpenSim | |
parent | * Added helpers to convert from LSL PrimitiveParams values to PrimitiveBaseSh... (diff) | |
download | opensim-SC_OLD-411d06c94e0b8e696eb6b19019f46079927151f2.zip opensim-SC_OLD-411d06c94e0b8e696eb6b19019f46079927151f2.tar.gz opensim-SC_OLD-411d06c94e0b8e696eb6b19019f46079927151f2.tar.bz2 opensim-SC_OLD-411d06c94e0b8e696eb6b19019f46079927151f2.tar.xz |
moving Region store for SQLite into the OpenSim.Framework.Data.SQLite
namespace to mirror what is done with MySQL. This will require a
configuration change for people using SQLite for prims which is given
as an example in OpenSim.ini.example
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Data.SQLite/SQLiteRegionData.cs (renamed from OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs b/OpenSim/Framework/Data.SQLite/SQLiteRegionData.cs index 4d11dfb..00b0acb 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs +++ b/OpenSim/Framework/Data.SQLite/SQLiteRegionData.cs | |||
@@ -38,9 +38,9 @@ using OpenSim.Region.Environment.Interfaces; | |||
38 | using OpenSim.Region.Environment.LandManagement; | 38 | using OpenSim.Region.Environment.LandManagement; |
39 | using OpenSim.Region.Environment.Scenes; | 39 | using OpenSim.Region.Environment.Scenes; |
40 | 40 | ||
41 | namespace OpenSim.DataStore.MonoSqlite | 41 | namespace OpenSim.Framework.Data.SQLite |
42 | { | 42 | { |
43 | public class MonoSqliteDataStore : IRegionDataStore | 43 | public class SQLiteRegionData : IRegionDataStore |
44 | { | 44 | { |
45 | private const string primSelect = "select * from prims"; | 45 | private const string primSelect = "select * from prims"; |
46 | private const string shapeSelect = "select * from primshapes"; | 46 | private const string shapeSelect = "select * from primshapes"; |