From 54d9fbc0fe419dfb19da587d7b27d9a152a42946 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 27 Dec 2007 00:53:13 +0000 Subject: Prim inventory persistence phase 1: Creation of preliminary table in sqlite. No user functionality yet. This code is not turned on, so there is no possibility of disruption to existing databases. --- OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Environment/Interfaces') diff --git a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs index 7c63027..91aa5ff 100644 --- a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs +++ b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs @@ -38,9 +38,10 @@ namespace OpenSim.Region.Environment.Interfaces /// /// Initialises the data storage engine /// - /// The file to save the database to (may not be applicable) - /// The name of the database to store to (may not be applicable) - void Initialise(string filename); + /// The file to save the database to (may not be applicable). Alternatively, + /// a connection string for the database + /// Temporary switch while this option is immature + void Initialise(string filename, bool persistPrimInventories); void StoreObject(SceneObjectGroup obj, LLUUID regionUUID); void RemoveObject(LLUUID uuid, LLUUID regionUUID); -- cgit v1.1