diff options
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLRegionData.cs')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLRegionData.cs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/OpenSim/Data/MySQL/MySQLRegionData.cs b/OpenSim/Data/MySQL/MySQLRegionData.cs index d1f1932..0614879 100644 --- a/OpenSim/Data/MySQL/MySQLRegionData.cs +++ b/OpenSim/Data/MySQL/MySQLRegionData.cs | |||
@@ -329,11 +329,12 @@ namespace OpenSim.Data.MySQL | |||
329 | if (scopeID != UUID.Zero) | 329 | if (scopeID != UUID.Zero) |
330 | command += " and ScopeID = ?scopeID"; | 330 | command += " and ScopeID = ?scopeID"; |
331 | 331 | ||
332 | MySqlCommand cmd = new MySqlCommand(command); | 332 | using (MySqlCommand cmd = new MySqlCommand(command)) |
333 | 333 | { | |
334 | cmd.Parameters.AddWithValue("?scopeID", scopeID.ToString()); | 334 | cmd.Parameters.AddWithValue("?scopeID", scopeID.ToString()); |
335 | 335 | ||
336 | return RunCommand(cmd); | 336 | return RunCommand(cmd); |
337 | } | ||
337 | } | 338 | } |
338 | } | 339 | } |
339 | } | 340 | } \ No newline at end of file |