diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs index 6112720..721c08e 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs | |||
@@ -621,7 +621,7 @@ namespace OpenSim.DataStore.MonoSqlite | |||
621 | createCol(land, "OwnerUUID", typeof(String)); | 621 | createCol(land, "OwnerUUID", typeof(String)); |
622 | createCol(land, "IsGroupOwned", typeof(Boolean)); | 622 | createCol(land, "IsGroupOwned", typeof(Boolean)); |
623 | createCol(land, "Area", typeof(Int32)); | 623 | createCol(land, "Area", typeof(Int32)); |
624 | createCol(land, "AutionID", typeof(Int32)); //Unemplemented | 624 | createCol(land, "AuctionID", typeof(Int32)); //Unemplemented |
625 | createCol(land, "Category", typeof(Int32)); //Enum libsecondlife.Parcel.ParcelCategory | 625 | createCol(land, "Category", typeof(Int32)); //Enum libsecondlife.Parcel.ParcelCategory |
626 | createCol(land, "ClaimDate", typeof(Int32)); | 626 | createCol(land, "ClaimDate", typeof(Int32)); |
627 | createCol(land, "ClaimPrice", typeof(Int32)); | 627 | createCol(land, "ClaimPrice", typeof(Int32)); |
@@ -747,7 +747,7 @@ namespace OpenSim.DataStore.MonoSqlite | |||
747 | newData.ownerID= (String) row["OwnerUUID"]; | 747 | newData.ownerID= (String) row["OwnerUUID"]; |
748 | newData.isGroupOwned= (Boolean) row["IsGroupOwned"]; | 748 | newData.isGroupOwned= (Boolean) row["IsGroupOwned"]; |
749 | newData.area= Convert.ToInt32(row["Area"]); | 749 | newData.area= Convert.ToInt32(row["Area"]); |
750 | newData.auctionID = Convert.ToUInt32(row["AutionID"]); //Unemplemented | 750 | newData.auctionID = Convert.ToUInt32(row["AuctionID"]); //Unemplemented |
751 | newData.category= (Parcel.ParcelCategory) Convert.ToInt32(row["Category"]); //Enum libsecondlife.Parcel.ParcelCategory | 751 | newData.category= (Parcel.ParcelCategory) Convert.ToInt32(row["Category"]); //Enum libsecondlife.Parcel.ParcelCategory |
752 | newData.claimDate= Convert.ToInt32(row["ClaimDate"]); | 752 | newData.claimDate= Convert.ToInt32(row["ClaimDate"]); |
753 | newData.claimPrice= Convert.ToInt32(row["ClaimPrice"]); | 753 | newData.claimPrice= Convert.ToInt32(row["ClaimPrice"]); |
@@ -870,7 +870,7 @@ namespace OpenSim.DataStore.MonoSqlite | |||
870 | row["OwnerUUID"] = land.ownerID.ToString(); | 870 | row["OwnerUUID"] = land.ownerID.ToString(); |
871 | row["IsGroupOwned"] = land.isGroupOwned; | 871 | row["IsGroupOwned"] = land.isGroupOwned; |
872 | row["Area"] = land.area; | 872 | row["Area"] = land.area; |
873 | row["AutionID"] = land.auctionID; //Unemplemented | 873 | row["AuctionID"] = land.auctionID; //Unemplemented |
874 | row["Category"] = land.category; //Enum libsecondlife.Parcel.ParcelCategory | 874 | row["Category"] = land.category; //Enum libsecondlife.Parcel.ParcelCategory |
875 | row["ClaimDate"] = land.claimDate; | 875 | row["ClaimDate"] = land.claimDate; |
876 | row["ClaimPrice"] = land.claimPrice; | 876 | row["ClaimPrice"] = land.claimPrice; |