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
This commit is contained in:
Sean Dague
2008-01-09 18:41:20 +00:00
parent b469990972
commit 411d06c94e
3 changed files with 4 additions and 31 deletions

View File

@@ -38,9 +38,9 @@ using OpenSim.Region.Environment.Interfaces;
using OpenSim.Region.Environment.LandManagement;
using OpenSim.Region.Environment.Scenes;
namespace OpenSim.DataStore.MonoSqlite
namespace OpenSim.Framework.Data.SQLite
{
public class MonoSqliteDataStore : IRegionDataStore
public class SQLiteRegionData : IRegionDataStore
{
private const string primSelect = "select * from prims";
private const string shapeSelect = "select * from primshapes";