aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-09 19:01:52 +0000
committerJustin Clarke Casey2009-04-09 19:01:52 +0000
commit67333d48fc0b9e70804b7ceef80494484b2a247c (patch)
treed9d191522f0ba65a02d6bf4480cbe606b6e37f02 /OpenSim/Data/SQLite/SQLiteInventoryStore.cs
parent* Improve inventory uuid conversions to make sure that we aren't converting a... (diff)
downloadopensim-SC_OLD-67333d48fc0b9e70804b7ceef80494484b2a247c.zip
opensim-SC_OLD-67333d48fc0b9e70804b7ceef80494484b2a247c.tar.gz
opensim-SC_OLD-67333d48fc0b9e70804b7ceef80494484b2a247c.tar.bz2
opensim-SC_OLD-67333d48fc0b9e70804b7ceef80494484b2a247c.tar.xz
* Change UUIDs in SQLite user db to dashed format to match representations elsewhere
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteInventoryStore.cs')
-rw-r--r--OpenSim/Data/SQLite/SQLiteInventoryStore.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
index e84eed5..d6f41fd 100644
--- a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
+++ b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
@@ -877,7 +877,7 @@ namespace OpenSim.Data.SQLite
877 DataTable inventoryItemTable = ds.Tables["inventoryitems"]; 877 DataTable inventoryItemTable = ds.Tables["inventoryitems"];
878 string selectExp 878 string selectExp
879 = "avatarID = '" + avatarID + "' AND assetType = " + (int)AssetType.Gesture + " AND flags = 1"; 879 = "avatarID = '" + avatarID + "' AND assetType = " + (int)AssetType.Gesture + " AND flags = 1";
880 m_log.DebugFormat("[SQL]: sql = " + selectExp); 880 //m_log.DebugFormat("[SQL]: sql = " + selectExp);
881 DataRow[] rows = inventoryItemTable.Select(selectExp); 881 DataRow[] rows = inventoryItemTable.Select(selectExp);
882 foreach (DataRow row in rows) 882 foreach (DataRow row in rows)
883 { 883 {