aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-04-27 21:11:02 +0000
committerAdam Frisby2007-04-27 21:11:02 +0000
commit6ce5b6e439e304ba8ce27a9e5bad3146feedd7f0 (patch)
treefa25cc297d83f70080b21f78e3bc04d32df5b00f /OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs
parent* Added new commandline option -config <configfile.xml> (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs5
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();