From 487a54ffc060e511f7a9f376153429a16e7a3d34 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 24 Aug 2007 15:51:31 +0000 Subject: it helps to actually call TestTables to get the new tables created --- OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Framework/Data.SQLite') diff --git a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs index b63619a..d3d752f 100644 --- a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs +++ b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs @@ -39,6 +39,8 @@ namespace OpenSim.Framework.Data.SQLite MainLog.Instance.Verbose("Inventory", "Sqlite - connecting: " + dbfile); SqliteConnection conn = new SqliteConnection(connectionString); + TestTables(conn); + SqliteCommand itemsSelectCmd = new SqliteCommand(invItemsSelect, conn); invItemsDa = new SqliteDataAdapter(itemsSelectCmd); // SqliteCommandBuilder primCb = new SqliteCommandBuilder(primDa); -- cgit v1.1