aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
diff options
context:
space:
mode:
authorSean Dague2007-08-24 15:51:31 +0000
committerSean Dague2007-08-24 15:51:31 +0000
commit487a54ffc060e511f7a9f376153429a16e7a3d34 (patch)
treeb2d7acdb2faf19709db84cc62ba36f5526c5a32a /OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
parentsetting to native line ending for new files (diff)
downloadopensim-SC_OLD-487a54ffc060e511f7a9f376153429a16e7a3d34.zip
opensim-SC_OLD-487a54ffc060e511f7a9f376153429a16e7a3d34.tar.gz
opensim-SC_OLD-487a54ffc060e511f7a9f376153429a16e7a3d34.tar.bz2
opensim-SC_OLD-487a54ffc060e511f7a9f376153429a16e7a3d34.tar.xz
it helps to actually call TestTables to get the new tables created
Diffstat (limited to 'OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs')
-rw-r--r--OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs2
1 files changed, 2 insertions, 0 deletions
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
39 MainLog.Instance.Verbose("Inventory", "Sqlite - connecting: " + dbfile); 39 MainLog.Instance.Verbose("Inventory", "Sqlite - connecting: " + dbfile);
40 SqliteConnection conn = new SqliteConnection(connectionString); 40 SqliteConnection conn = new SqliteConnection(connectionString);
41 41
42 TestTables(conn);
43
42 SqliteCommand itemsSelectCmd = new SqliteCommand(invItemsSelect, conn); 44 SqliteCommand itemsSelectCmd = new SqliteCommand(invItemsSelect, conn);
43 invItemsDa = new SqliteDataAdapter(itemsSelectCmd); 45 invItemsDa = new SqliteDataAdapter(itemsSelectCmd);
44 // SqliteCommandBuilder primCb = new SqliteCommandBuilder(primDa); 46 // SqliteCommandBuilder primCb = new SqliteCommandBuilder(primDa);