diff options
author | Sean Dague | 2008-05-28 17:59:46 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-28 17:59:46 +0000 |
commit | 89c164fbc18e082bf2d036bd2167b824e90aebc1 (patch) | |
tree | 9042b06429cb3941b04f79af084c13d022d861e7 /OpenSim/Data/SQLite/SQLiteGridData.cs | |
parent | * Minor: Another small log adjustment (diff) | |
download | opensim-SC_OLD-89c164fbc18e082bf2d036bd2167b824e90aebc1.zip opensim-SC_OLD-89c164fbc18e082bf2d036bd2167b824e90aebc1.tar.gz opensim-SC_OLD-89c164fbc18e082bf2d036bd2167b824e90aebc1.tar.bz2 opensim-SC_OLD-89c164fbc18e082bf2d036bd2167b824e90aebc1.tar.xz |
let Grid Servers specify a connect string in their configuration.
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteGridData.cs')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteGridData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteGridData.cs b/OpenSim/Data/SQLite/SQLiteGridData.cs index 989ec77..7c5bb0c 100644 --- a/OpenSim/Data/SQLite/SQLiteGridData.cs +++ b/OpenSim/Data/SQLite/SQLiteGridData.cs | |||
@@ -48,9 +48,9 @@ namespace OpenSim.Data.SQLite | |||
48 | /// <summary> | 48 | /// <summary> |
49 | /// Initialises the Grid Interface | 49 | /// Initialises the Grid Interface |
50 | /// </summary> | 50 | /// </summary> |
51 | override public void Initialise() | 51 | override public void Initialise(string connect) |
52 | { | 52 | { |
53 | database = new SQLiteManager("localhost", "db", "user", "password", "false"); | 53 | database = new SQLiteManager(connect); |
54 | } | 54 | } |
55 | 55 | ||
56 | /// <summary> | 56 | /// <summary> |