* Change UUIDs in SQLite user db to dashed format to match representations elsewhere

This commit is contained in:
Justin Clarke Casey
2009-04-09 19:01:52 +00:00
parent 39c6302972
commit 67333d48fc
3 changed files with 22 additions and 11 deletions

View File

@@ -877,7 +877,7 @@ namespace OpenSim.Data.SQLite
DataTable inventoryItemTable = ds.Tables["inventoryitems"];
string selectExp
= "avatarID = '" + avatarID + "' AND assetType = " + (int)AssetType.Gesture + " AND flags = 1";
m_log.DebugFormat("[SQL]: sql = " + selectExp);
//m_log.DebugFormat("[SQL]: sql = " + selectExp);
DataRow[] rows = inventoryItemTable.Select(selectExp);
foreach (DataRow row in rows)
{