diff options
author | Dr Scofield | 2008-06-27 23:03:39 +0000 |
---|---|---|
committer | Dr Scofield | 2008-06-27 23:03:39 +0000 |
commit | 748f72326d9a295958bc9ba63bbb1a5d39030ef7 (patch) | |
tree | 58f2c9a5f6b8ffab5ad3621070aa17cb1c1e3e6b /OpenSim/Data/SQLite/SQLiteInventoryStore.cs | |
parent | more warnings to go. (diff) | |
download | opensim-SC-748f72326d9a295958bc9ba63bbb1a5d39030ef7.zip opensim-SC-748f72326d9a295958bc9ba63bbb1a5d39030ef7.tar.gz opensim-SC-748f72326d9a295958bc9ba63bbb1a5d39030ef7.tar.bz2 opensim-SC-748f72326d9a295958bc9ba63bbb1a5d39030ef7.tar.xz |
last round of warning squashing. calling it a day now.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteInventoryStore.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs index f7a1fdc..99560a0 100644 --- a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs +++ b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs | |||
@@ -297,7 +297,7 @@ namespace OpenSim.Data.SQLite | |||
297 | public string getVersion() | 297 | public string getVersion() |
298 | { | 298 | { |
299 | Module module = GetType().Module; | 299 | Module module = GetType().Module; |
300 | string dllName = module.Assembly.ManifestModule.Name; | 300 | // string dllName = module.Assembly.ManifestModule.Name; |
301 | Version dllVersion = module.Assembly.GetName().Version; | 301 | Version dllVersion = module.Assembly.GetName().Version; |
302 | 302 | ||
303 | 303 | ||
@@ -741,17 +741,17 @@ namespace OpenSim.Data.SQLite | |||
741 | /// | 741 | /// |
742 | /// </summary> | 742 | /// </summary> |
743 | /// <param name="conn"></param> | 743 | /// <param name="conn"></param> |
744 | private static void InitDB(SqliteConnection conn) | 744 | // private static void InitDB(SqliteConnection conn) |
745 | { | 745 | // { |
746 | string createInventoryItems = defineTable(createInventoryItemsTable()); | 746 | // string createInventoryItems = defineTable(createInventoryItemsTable()); |
747 | string createInventoryFolders = defineTable(createInventoryFoldersTable()); | 747 | // string createInventoryFolders = defineTable(createInventoryFoldersTable()); |
748 | 748 | ||
749 | SqliteCommand pcmd = new SqliteCommand(createInventoryItems, conn); | 749 | // SqliteCommand pcmd = new SqliteCommand(createInventoryItems, conn); |
750 | SqliteCommand scmd = new SqliteCommand(createInventoryFolders, conn); | 750 | // SqliteCommand scmd = new SqliteCommand(createInventoryFolders, conn); |
751 | 751 | ||
752 | pcmd.ExecuteNonQuery(); | 752 | // pcmd.ExecuteNonQuery(); |
753 | scmd.ExecuteNonQuery(); | 753 | // scmd.ExecuteNonQuery(); |
754 | } | 754 | // } |
755 | 755 | ||
756 | /// <summary> | 756 | /// <summary> |
757 | /// | 757 | /// |