From 202a4bec13a37d8a2f702f879a5e2b0d2e74085a Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 12 Jun 2008 18:44:58 +0000 Subject: Fix mysql migrations. This is tested with an existing up to date schema, and no schema. It should also work with a non up to date schema as well. Btw, meetings in which I can get code done are the right kind of meetings. --- OpenSim/Data/MySQL/MySQLDataStore.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'OpenSim/Data/MySQL/MySQLDataStore.cs') diff --git a/OpenSim/Data/MySQL/MySQLDataStore.cs b/OpenSim/Data/MySQL/MySQLDataStore.cs index e9bc365..01cd605 100644 --- a/OpenSim/Data/MySQL/MySQLDataStore.cs +++ b/OpenSim/Data/MySQL/MySQLDataStore.cs @@ -90,6 +90,7 @@ namespace OpenSim.Data.MySQL m_log.Info("[REGION DB]: MySql - connecting: " + connectionstring); m_connection = new MySqlConnection(connectionstring); + m_connection.Open(); // This actually does the roll forward assembly stuff Assembly assem = GetType().Assembly; -- cgit v1.1