aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorMelanie2010-10-16 10:52:56 +0100
committerMelanie2010-10-16 10:52:56 +0100
commit46e5c8e919076835fb0f7118b6a0e0269c01b671 (patch)
treee222bf427a984b377ae405e6cbc9ff42e8aa7a39 /OpenSim/Data
parentMerge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff)
parentDrop max oar loading version back to 0 from 1 (diff)
downloadopensim-SC_OLD-46e5c8e919076835fb0f7118b6a0e0269c01b671.zip
opensim-SC_OLD-46e5c8e919076835fb0f7118b6a0e0269c01b671.tar.gz
opensim-SC_OLD-46e5c8e919076835fb0f7118b6a0e0269c01b671.tar.bz2
opensim-SC_OLD-46e5c8e919076835fb0f7118b6a0e0269c01b671.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/MySQLSimulationData.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/MySQLSimulationData.cs b/OpenSim/Data/MySQL/MySQLSimulationData.cs
index 3450e2f..e2b6953 100644
--- a/OpenSim/Data/MySQL/MySQLSimulationData.cs
+++ b/OpenSim/Data/MySQL/MySQLSimulationData.cs
@@ -424,6 +424,7 @@ namespace OpenSim.Data.MySQL
424 cmd.CommandText = 424 cmd.CommandText =
425 "SELECT * FROM prims LEFT JOIN primshapes ON prims.UUID = primshapes.UUID WHERE RegionUUID = ?RegionUUID"; 425 "SELECT * FROM prims LEFT JOIN primshapes ON prims.UUID = primshapes.UUID WHERE RegionUUID = ?RegionUUID";
426 cmd.Parameters.AddWithValue("RegionUUID", regionID.ToString()); 426 cmd.Parameters.AddWithValue("RegionUUID", regionID.ToString());
427 cmd.CommandTimeout = 3600;
427 428
428 using (IDataReader reader = ExecuteReader(cmd)) 429 using (IDataReader reader = ExecuteReader(cmd))
429 { 430 {