Restored mising m_Connection.

This commit is contained in:
Diva Canto
2010-02-20 21:24:18 -08:00
parent d761d1624b
commit 56fb7821ad
2 changed files with 7 additions and 4 deletions

View File

@@ -57,8 +57,8 @@ namespace OpenSim.Data.SQLite
using (SqliteConnection dbcon = new SqliteConnection(m_connectionString))
{
dbcon.Open();
Migration m = new Migration(dbcon, GetType().Assembly, "AuthStore");
//dbcon.Open();
Migration m = new Migration(m_Connection, GetType().Assembly, "AuthStore");
m.Update();
}
@@ -149,8 +149,9 @@ namespace OpenSim.Data.SQLite
return false;
}
}
catch
catch (Exception e)
{
Console.WriteLine(e.ToString());
cmd.Dispose();
return false;
}
@@ -174,8 +175,9 @@ namespace OpenSim.Data.SQLite
return false;
}
}
catch
catch (Exception e)
{
Console.WriteLine(e.ToString());
cmd.Dispose();
return false;
}