diff options
author | Homer Horwitz | 2008-12-22 19:49:17 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-12-22 19:49:17 +0000 |
commit | fb49e010b781b33c6c7cc52f88aed0dcf6f8a721 (patch) | |
tree | 47aa52f55f4354132ba72a25033f5864faa6f50a /OpenSim/Data/MySQL/MySQLAssetData.cs | |
parent | * hide test for the moment. (diff) | |
download | opensim-SC_OLD-fb49e010b781b33c6c7cc52f88aed0dcf6f8a721.zip opensim-SC_OLD-fb49e010b781b33c6c7cc52f88aed0dcf6f8a721.tar.gz opensim-SC_OLD-fb49e010b781b33c6c7cc52f88aed0dcf6f8a721.tar.bz2 opensim-SC_OLD-fb49e010b781b33c6c7cc52f88aed0dcf6f8a721.tar.xz |
Update the MySQL connector to 5.2.5. Fixes Mantids#2673. Thanks for the hint, jhurliman.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLAssetData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLAssetData.cs b/OpenSim/Data/MySQL/MySQLAssetData.cs index 4b51bda..23077f1 100644 --- a/OpenSim/Data/MySQL/MySQLAssetData.cs +++ b/OpenSim/Data/MySQL/MySQLAssetData.cs | |||
@@ -142,7 +142,7 @@ namespace OpenSim.Data.MySQL | |||
142 | asset.Data = (byte[]) dbReader["data"]; | 142 | asset.Data = (byte[]) dbReader["data"]; |
143 | asset.Description = (string) dbReader["description"]; | 143 | asset.Description = (string) dbReader["description"]; |
144 | asset.FullID = assetID; | 144 | asset.FullID = assetID; |
145 | asset.Local = ((sbyte) dbReader["local"]) != 0 ? true : false; | 145 | asset.Local = (bool)dbReader["local"]; |
146 | asset.Name = (string) dbReader["name"]; | 146 | asset.Name = (string) dbReader["name"]; |
147 | asset.Type = (sbyte) dbReader["assetType"]; | 147 | asset.Type = (sbyte) dbReader["assetType"]; |
148 | } | 148 | } |