aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLSimulationData.cs
diff options
context:
space:
mode:
authorDiva Canto2010-10-15 15:43:06 -0700
committerDiva Canto2010-10-15 15:43:06 -0700
commite039a8c8c23a6a3b2b9a5019de09f758a84c74ec (patch)
tree3ce36e8c3d21bbabd5bf300589dcc8effe82cc8c /OpenSim/Data/MySQL/MySQLSimulationData.cs
parentAdding projected light filters to prim propeties (diff)
downloadopensim-SC_OLD-e039a8c8c23a6a3b2b9a5019de09f758a84c74ec.zip
opensim-SC_OLD-e039a8c8c23a6a3b2b9a5019de09f758a84c74ec.tar.gz
opensim-SC_OLD-e039a8c8c23a6a3b2b9a5019de09f758a84c74ec.tar.bz2
opensim-SC_OLD-e039a8c8c23a6a3b2b9a5019de09f758a84c74ec.tar.xz
UPdated the MySql driver to 6.2.4. Also established a much larger MySqlCommand timeout on fetching prims.
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLSimulationData.cs')
-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 {