From 89c164fbc18e082bf2d036bd2167b824e90aebc1 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Wed, 28 May 2008 17:59:46 +0000 Subject: let Grid Servers specify a connect string in their configuration. --- OpenSim/Data/SQLite/SQLiteGridData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Data/SQLite/SQLiteGridData.cs') 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 /// /// Initialises the Grid Interface /// - override public void Initialise() + override public void Initialise(string connect) { - database = new SQLiteManager("localhost", "db", "user", "password", "false"); + database = new SQLiteManager(connect); } /// -- cgit v1.1