aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLInventoryData.cs
diff options
context:
space:
mode:
authorAlexRa2010-05-19 02:28:19 +0300
committerAlexRa2010-05-19 02:28:19 +0300
commitdeae0301456a169540aafc4ff1a574e1304e327d (patch)
tree1091a4c044385b233fb9a9aafa29d42f1780cf33 /OpenSim/Data/MySQL/MySQLInventoryData.cs
parentAll (?) MySQL stores fixed to use DBGuid.FromDB() (diff)
downloadopensim-SC_OLD-deae0301456a169540aafc4ff1a574e1304e327d.zip
opensim-SC_OLD-deae0301456a169540aafc4ff1a574e1304e327d.tar.gz
opensim-SC_OLD-deae0301456a169540aafc4ff1a574e1304e327d.tar.bz2
opensim-SC_OLD-deae0301456a169540aafc4ff1a574e1304e327d.tar.xz
Some more corrections after MySQL connector update
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLInventoryData.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLInventoryData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLInventoryData.cs b/OpenSim/Data/MySQL/MySQLInventoryData.cs
index 8fbe7a8..0aea30f 100644
--- a/OpenSim/Data/MySQL/MySQLInventoryData.cs
+++ b/OpenSim/Data/MySQL/MySQLInventoryData.cs
@@ -287,7 +287,7 @@ namespace OpenSim.Data.MySQL
287 287
288 // TODO: this is to handle a case where NULLs creep in there, which we are not sure is endemic to the system, or legacy. It would be nice to live fix these. 288 // TODO: this is to handle a case where NULLs creep in there, which we are not sure is endemic to the system, or legacy. It would be nice to live fix these.
289 // ( DBGuid.FromDB() reads db NULLs as well, returns UUID.Zero ) 289 // ( DBGuid.FromDB() reads db NULLs as well, returns UUID.Zero )
290 item.CreatorId = DBGuid.FromDB(reader["creatorID"]).ToString(); 290 item.CreatorId = reader["creatorID"].ToString();
291 291
292 // Be a bit safer in parsing these because the 292 // Be a bit safer in parsing these because the
293 // database doesn't enforce them to be not null, and 293 // database doesn't enforce them to be not null, and