diff options
author | Adam Frisby | 2007-04-27 21:11:02 +0000 |
---|---|---|
committer | Adam Frisby | 2007-04-27 21:11:02 +0000 |
commit | 6ce5b6e439e304ba8ce27a9e5bad3146feedd7f0 (patch) | |
tree | fa25cc297d83f70080b21f78e3bc04d32df5b00f /OpenSim.Storage/LocalStorageSQLite | |
parent | * Added new commandline option -config <configfile.xml> (diff) | |
download | opensim-SC_OLD-6ce5b6e439e304ba8ce27a9e5bad3146feedd7f0.zip opensim-SC_OLD-6ce5b6e439e304ba8ce27a9e5bad3146feedd7f0.tar.gz opensim-SC_OLD-6ce5b6e439e304ba8ce27a9e5bad3146feedd7f0.tar.bz2 opensim-SC_OLD-6ce5b6e439e304ba8ce27a9e5bad3146feedd7f0.tar.xz |
Major ass commit
Added new "Datastore" parameter to simconfig.xml which is passed to storage engines via a new Initialise() function.
Diffstat (limited to 'OpenSim.Storage/LocalStorageSQLite')
-rw-r--r-- | OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs b/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs index ff7b146..35875a1 100644 --- a/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs +++ b/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs | |||
@@ -59,6 +59,11 @@ namespace OpenSim.Storage.LocalStorageSQLite | |||
59 | } | 59 | } |
60 | } | 60 | } |
61 | 61 | ||
62 | public void Initialise(string file) | ||
63 | { | ||
64 | // Blank | ||
65 | } | ||
66 | |||
62 | public void StorePrim(PrimData prim) | 67 | public void StorePrim(PrimData prim) |
63 | { | 68 | { |
64 | IDbCommand cmd = db.CreateCommand(); | 69 | IDbCommand cmd = db.CreateCommand(); |