mono 2.4.2 seems a little more type strict, fix some sqlite tests to pass

0.6.6-post-fixes
Sean Dague 2009-06-18 23:59:21 +00:00
parent 00d042f3d1
commit 96f3001bfb
1 changed files with 2 additions and 2 deletions

View File

@ -188,7 +188,7 @@ namespace OpenSim.Data.SQLite
row["invType"] = item.InvType;
row["parentFolderID"] = item.Folder.ToString();
row["avatarID"] = item.Owner.ToString();
row["creatorsID"] = item.CreatorId;
row["creatorsID"] = item.CreatorId.ToString();
row["inventoryName"] = item.Name;
row["inventoryDescription"] = item.Description;
@ -202,7 +202,7 @@ namespace OpenSim.Data.SQLite
row["salePrice"] = item.SalePrice;
row["saleType"] = item.SaleType;
row["creationDate"] = item.CreationDate;
row["groupID"] = item.GroupID;
row["groupID"] = item.GroupID.ToString();
row["groupOwned"] = item.GroupOwned;
row["flags"] = item.Flags;
}