Update the MySQL connector to 5.2.5. Fixes Mantids#2673. Thanks for the hint, jhurliman.

This commit is contained in:
Homer Horwitz
2008-12-22 19:49:17 +00:00
parent 58de1bfdf5
commit fb49e010b7
3 changed files with 110 additions and 66 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ namespace OpenSim.Data.MySQL
asset.Data = (byte[]) dbReader["data"];
asset.Description = (string) dbReader["description"];
asset.FullID = assetID;
asset.Local = ((sbyte) dbReader["local"]) != 0 ? true : false;
asset.Local = (bool)dbReader["local"];
asset.Name = (string) dbReader["name"];
asset.Type = (sbyte) dbReader["assetType"];
}