diff options
author | Sean Dague | 2009-06-19 00:01:50 +0000 |
---|---|---|
committer | Sean Dague | 2009-06-19 00:01:50 +0000 |
commit | fa54ef5030c46cc9d092b9edcd9ae11f52919d80 (patch) | |
tree | 42ba834fa5c63062661d1a4cb15ab98ca2490418 /OpenSim/Data/SQLite | |
parent | mono 2.4.2 seems a little more type strict, fix some sqlite tests to pass (diff) | |
download | opensim-SC_OLD-fa54ef5030c46cc9d092b9edcd9ae11f52919d80.zip opensim-SC_OLD-fa54ef5030c46cc9d092b9edcd9ae11f52919d80.tar.gz opensim-SC_OLD-fa54ef5030c46cc9d092b9edcd9ae11f52919d80.tar.bz2 opensim-SC_OLD-fa54ef5030c46cc9d092b9edcd9ae11f52919d80.tar.xz |
more type clean fixes for mono 2.4.2
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs index 70709b7..b3687de 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -1582,10 +1582,10 @@ namespace OpenSim.Data.SQLite | |||
1582 | /// <param name="taskItem"></param> | 1582 | /// <param name="taskItem"></param> |
1583 | private static void fillItemRow(DataRow row, TaskInventoryItem taskItem) | 1583 | private static void fillItemRow(DataRow row, TaskInventoryItem taskItem) |
1584 | { | 1584 | { |
1585 | row["itemID"] = taskItem.ItemID; | 1585 | row["itemID"] = taskItem.ItemID.ToString(); |
1586 | row["primID"] = taskItem.ParentPartID; | 1586 | row["primID"] = taskItem.ParentPartID.ToString(); |
1587 | row["assetID"] = taskItem.AssetID; | 1587 | row["assetID"] = taskItem.AssetID.ToString(); |
1588 | row["parentFolderID"] = taskItem.ParentID; | 1588 | row["parentFolderID"] = taskItem.ParentID.ToString(); |
1589 | 1589 | ||
1590 | row["invType"] = taskItem.InvType; | 1590 | row["invType"] = taskItem.InvType; |
1591 | row["assetType"] = taskItem.Type; | 1591 | row["assetType"] = taskItem.Type; |
@@ -1593,10 +1593,10 @@ namespace OpenSim.Data.SQLite | |||
1593 | row["name"] = taskItem.Name; | 1593 | row["name"] = taskItem.Name; |
1594 | row["description"] = taskItem.Description; | 1594 | row["description"] = taskItem.Description; |
1595 | row["creationDate"] = taskItem.CreationDate; | 1595 | row["creationDate"] = taskItem.CreationDate; |
1596 | row["creatorID"] = taskItem.CreatorID; | 1596 | row["creatorID"] = taskItem.CreatorID.ToString(); |
1597 | row["ownerID"] = taskItem.OwnerID; | 1597 | row["ownerID"] = taskItem.OwnerID.ToString(); |
1598 | row["lastOwnerID"] = taskItem.LastOwnerID; | 1598 | row["lastOwnerID"] = taskItem.LastOwnerID.ToString(); |
1599 | row["groupID"] = taskItem.GroupID; | 1599 | row["groupID"] = taskItem.GroupID.ToString(); |
1600 | row["nextPermissions"] = taskItem.NextPermissions; | 1600 | row["nextPermissions"] = taskItem.NextPermissions; |
1601 | row["currentPermissions"] = taskItem.CurrentPermissions; | 1601 | row["currentPermissions"] = taskItem.CurrentPermissions; |
1602 | row["basePermissions"] = taskItem.BasePermissions; | 1602 | row["basePermissions"] = taskItem.BasePermissions; |