aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite
diff options
context:
space:
mode:
authorJustin Clarke Casey2007-12-20 21:49:21 +0000
committerJustin Clarke Casey2007-12-20 21:49:21 +0000
commit288e7def7d2d9c1432b65c87472a33dfb7c7673d (patch)
tree26f4eb816752af78f469c8139f33058216618ee9 /OpenSim/Framework/Data.SQLite
parentFix up other sqlite db interactions to use non-hyphenated uuid (diff)
downloadopensim-SC_OLD-288e7def7d2d9c1432b65c87472a33dfb7c7673d.zip
opensim-SC_OLD-288e7def7d2d9c1432b65c87472a33dfb7c7673d.tar.gz
opensim-SC_OLD-288e7def7d2d9c1432b65c87472a33dfb7c7673d.tar.bz2
opensim-SC_OLD-288e7def7d2d9c1432b65c87472a33dfb7c7673d.tar.xz
Convert some inventory ids I managed to miss
Diffstat (limited to 'OpenSim/Framework/Data.SQLite')
-rw-r--r--OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
index ac6c877..c696259 100644
--- a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
+++ b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
@@ -553,18 +553,18 @@ namespace OpenSim.Framework.Data.SQLite
553 553
554 private void fillFolderRow(DataRow row, InventoryFolderBase folder) 554 private void fillFolderRow(DataRow row, InventoryFolderBase folder)
555 { 555 {
556 row["UUID"] = folder.folderID; 556 row["UUID"] = Util.ToRawUuidString(folder.folderID);
557 row["name"] = folder.name; 557 row["name"] = folder.name;
558 row["agentID"] = folder.agentID; 558 row["agentID"] = Util.ToRawUuidString(folder.agentID);
559 row["parentID"] = folder.parentID; 559 row["parentID"] = Util.ToRawUuidString(folder.parentID);
560 row["type"] = folder.type; 560 row["type"] = folder.type;
561 row["version"] = folder.version; 561 row["version"] = folder.version;
562 } 562 }
563 563
564 private void moveFolderRow(DataRow row, InventoryFolderBase folder) 564 private void moveFolderRow(DataRow row, InventoryFolderBase folder)
565 { 565 {
566 row["UUID"] = folder.folderID; 566 row["UUID"] = Util.ToRawUuidString(folder.folderID);
567 row["parentID"] = folder.parentID; 567 row["parentID"] = Util.ToRawUuidString(folder.parentID);
568 } 568 }
569 569
570 /*********************************************************************** 570 /***********************************************************************