diff options
author | Justin Clarke Casey | 2007-12-27 00:53:13 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2007-12-27 00:53:13 +0000 |
commit | 54d9fbc0fe419dfb19da587d7b27d9a152a42946 (patch) | |
tree | f04bbd9eafd2b563d5f24334320c173a3558d109 /OpenSim/Region/Environment/Interfaces | |
parent | * Play the 'landing' animation when landing and minimize the collision protec... (diff) | |
download | opensim-SC_OLD-54d9fbc0fe419dfb19da587d7b27d9a152a42946.zip opensim-SC_OLD-54d9fbc0fe419dfb19da587d7b27d9a152a42946.tar.gz opensim-SC_OLD-54d9fbc0fe419dfb19da587d7b27d9a152a42946.tar.bz2 opensim-SC_OLD-54d9fbc0fe419dfb19da587d7b27d9a152a42946.tar.xz |
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.
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | 7 |
1 files changed, 4 insertions, 3 deletions
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 | |||
38 | /// <summary> | 38 | /// <summary> |
39 | /// Initialises the data storage engine | 39 | /// Initialises the data storage engine |
40 | /// </summary> | 40 | /// </summary> |
41 | /// <param name="filename">The file to save the database to (may not be applicable)</param> | 41 | /// <param name="filename">The file to save the database to (may not be applicable). Alternatively, |
42 | /// <param name="dbname">The name of the database to store to (may not be applicable)</param> | 42 | /// a connection string for the database</param> |
43 | void Initialise(string filename); | 43 | /// <param name="persistPrimInventories">Temporary switch while this option is immature</param> |
44 | void Initialise(string filename, bool persistPrimInventories); | ||
44 | 45 | ||
45 | void StoreObject(SceneObjectGroup obj, LLUUID regionUUID); | 46 | void StoreObject(SceneObjectGroup obj, LLUUID regionUUID); |
46 | void RemoveObject(LLUUID uuid, LLUUID regionUUID); | 47 | void RemoveObject(LLUUID uuid, LLUUID regionUUID); |