diff options
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLRegionData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/MySQL/MySQLRegionData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLRegionData.cs b/OpenSim/Data/MSSQL/MSSQLRegionData.cs index 5a0eda8..0fe8de7 100644 --- a/OpenSim/Data/MSSQL/MSSQLRegionData.cs +++ b/OpenSim/Data/MSSQL/MSSQLRegionData.cs | |||
@@ -875,13 +875,13 @@ VALUES | |||
875 | newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]); | 875 | newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]); |
876 | newData.Area = Convert.ToInt32(row["Area"]); | 876 | newData.Area = Convert.ToInt32(row["Area"]); |
877 | newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unemplemented | 877 | newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unemplemented |
878 | newData.Category = (Parcel.ParcelCategory)Convert.ToInt32(row["Category"]); | 878 | newData.Category = (ParcelCategory)Convert.ToInt32(row["Category"]); |
879 | //Enum libsecondlife.Parcel.ParcelCategory | 879 | //Enum libsecondlife.Parcel.ParcelCategory |
880 | newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]); | 880 | newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]); |
881 | newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]); | 881 | newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]); |
882 | newData.GroupID = new UUID((Guid)row["GroupUUID"]); | 882 | newData.GroupID = new UUID((Guid)row["GroupUUID"]); |
883 | newData.SalePrice = Convert.ToInt32(row["SalePrice"]); | 883 | newData.SalePrice = Convert.ToInt32(row["SalePrice"]); |
884 | newData.Status = (Parcel.ParcelStatus)Convert.ToInt32(row["LandStatus"]); | 884 | newData.Status = (ParcelStatus)Convert.ToInt32(row["LandStatus"]); |
885 | //Enum. libsecondlife.Parcel.ParcelStatus | 885 | //Enum. libsecondlife.Parcel.ParcelStatus |
886 | newData.Flags = Convert.ToUInt32(row["LandFlags"]); | 886 | newData.Flags = Convert.ToUInt32(row["LandFlags"]); |
887 | newData.LandingType = Convert.ToByte(row["LandingType"]); | 887 | newData.LandingType = Convert.ToByte(row["LandingType"]); |
diff --git a/OpenSim/Data/MySQL/MySQLRegionData.cs b/OpenSim/Data/MySQL/MySQLRegionData.cs index fafba16..09564de 100644 --- a/OpenSim/Data/MySQL/MySQLRegionData.cs +++ b/OpenSim/Data/MySQL/MySQLRegionData.cs | |||
@@ -1073,13 +1073,13 @@ namespace OpenSim.Data.MySQL | |||
1073 | newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]); | 1073 | newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]); |
1074 | newData.Area = Convert.ToInt32(row["Area"]); | 1074 | newData.Area = Convert.ToInt32(row["Area"]); |
1075 | newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unimplemented | 1075 | newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unimplemented |
1076 | newData.Category = (Parcel.ParcelCategory) Convert.ToInt32(row["Category"]); | 1076 | newData.Category = (ParcelCategory) Convert.ToInt32(row["Category"]); |
1077 | //Enum libsecondlife.Parcel.ParcelCategory | 1077 | //Enum libsecondlife.Parcel.ParcelCategory |
1078 | newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]); | 1078 | newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]); |
1079 | newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]); | 1079 | newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]); |
1080 | newData.GroupID = new UUID((String) row["GroupUUID"]); | 1080 | newData.GroupID = new UUID((String) row["GroupUUID"]); |
1081 | newData.SalePrice = Convert.ToInt32(row["SalePrice"]); | 1081 | newData.SalePrice = Convert.ToInt32(row["SalePrice"]); |
1082 | newData.Status = (Parcel.ParcelStatus) Convert.ToInt32(row["LandStatus"]); | 1082 | newData.Status = (ParcelStatus) Convert.ToInt32(row["LandStatus"]); |
1083 | //Enum. libsecondlife.Parcel.ParcelStatus | 1083 | //Enum. libsecondlife.Parcel.ParcelStatus |
1084 | newData.Flags = Convert.ToUInt32(row["LandFlags"]); | 1084 | newData.Flags = Convert.ToUInt32(row["LandFlags"]); |
1085 | newData.LandingType = Convert.ToByte(row["LandingType"]); | 1085 | newData.LandingType = Convert.ToByte(row["LandingType"]); |
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs index 16a05af..2f9f59d 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -1314,13 +1314,13 @@ namespace OpenSim.Data.SQLite | |||
1314 | newData.IsGroupOwned = (Boolean) row["IsGroupOwned"]; | 1314 | newData.IsGroupOwned = (Boolean) row["IsGroupOwned"]; |
1315 | newData.Area = Convert.ToInt32(row["Area"]); | 1315 | newData.Area = Convert.ToInt32(row["Area"]); |
1316 | newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unemplemented | 1316 | newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unemplemented |
1317 | newData.Category = (Parcel.ParcelCategory) Convert.ToInt32(row["Category"]); | 1317 | newData.Category = (ParcelCategory) Convert.ToInt32(row["Category"]); |
1318 | //Enum OpenMetaverse.Parcel.ParcelCategory | 1318 | //Enum OpenMetaverse.Parcel.ParcelCategory |
1319 | newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]); | 1319 | newData.ClaimDate = Convert.ToInt32(row["ClaimDate"]); |
1320 | newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]); | 1320 | newData.ClaimPrice = Convert.ToInt32(row["ClaimPrice"]); |
1321 | newData.GroupID = new UUID((String) row["GroupUUID"]); | 1321 | newData.GroupID = new UUID((String) row["GroupUUID"]); |
1322 | newData.SalePrice = Convert.ToInt32(row["SalePrice"]); | 1322 | newData.SalePrice = Convert.ToInt32(row["SalePrice"]); |
1323 | newData.Status = (Parcel.ParcelStatus) Convert.ToInt32(row["LandStatus"]); | 1323 | newData.Status = (ParcelStatus) Convert.ToInt32(row["LandStatus"]); |
1324 | //Enum. OpenMetaverse.Parcel.ParcelStatus | 1324 | //Enum. OpenMetaverse.Parcel.ParcelStatus |
1325 | newData.Flags = Convert.ToUInt32(row["LandFlags"]); | 1325 | newData.Flags = Convert.ToUInt32(row["LandFlags"]); |
1326 | newData.LandingType = (Byte) row["LandingType"]; | 1326 | newData.LandingType = (Byte) row["LandingType"]; |