From 3aed77bd2c5fecc2a077fdad501774b2b00001b1 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Thu, 15 Nov 2007 19:53:10 +0000 Subject: *** BIG CHANGES : REGION STORAGE MOVED : UPDATE YOUR OpenSim.ini FROM OpenSim.ini.example ** * Now moved region storage from region to application, so we have one storage per application, instead of one per region. * Changed so that the region store providers use connectionstrings, not filenames * Removed various unfit fields and properties (call me Darwin) --- OpenSim/Region/Examples/SimpleApp/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Examples') diff --git a/OpenSim/Region/Examples/SimpleApp/Program.cs b/OpenSim/Region/Examples/SimpleApp/Program.cs index 73b8303..bd88e61 100644 --- a/OpenSim/Region/Examples/SimpleApp/Program.cs +++ b/OpenSim/Region/Examples/SimpleApp/Program.cs @@ -175,9 +175,9 @@ namespace SimpleApp new ModuleLoader(m_log, m_config), true); } - protected override StorageManager CreateStorageManager(RegionInfo regionInfo) + protected override StorageManager CreateStorageManager(string connectionstring) { - return new StorageManager("OpenSim.DataStore.NullStorage.dll", "simpleapp.yap", "simpleapp"); + return new StorageManager("OpenSim.DataStore.NullStorage.dll", "simpleapp.yap"); } protected override PhysicsScene GetPhysicsScene() -- cgit v1.1