diff options
author | Jeff Ames | 2010-10-04 21:28:17 -0400 |
---|---|---|
committer | Jeff Ames | 2010-10-04 21:28:17 -0400 |
commit | bc9f793a92ab9b27a4cf3251fe586da70af03d42 (patch) | |
tree | 0a0e8fc19f4d52d2a6157ef5881439fde58493dd /OpenSim/Data/Migration.cs | |
parent | Formatting cleanup. (diff) | |
download | opensim-SC_OLD-bc9f793a92ab9b27a4cf3251fe586da70af03d42.zip opensim-SC_OLD-bc9f793a92ab9b27a4cf3251fe586da70af03d42.tar.gz opensim-SC_OLD-bc9f793a92ab9b27a4cf3251fe586da70af03d42.tar.bz2 opensim-SC_OLD-bc9f793a92ab9b27a4cf3251fe586da70af03d42.tar.xz |
Formatting cleanup.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/Migration.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/Migration.cs b/OpenSim/Data/Migration.cs index 2895a71..d606470 100644 --- a/OpenSim/Data/Migration.cs +++ b/OpenSim/Data/Migration.cs | |||
@@ -138,12 +138,12 @@ namespace OpenSim.Data | |||
138 | /// <param name="conn"></param> | 138 | /// <param name="conn"></param> |
139 | /// <param name="script">Array of strings, one-per-batch (often just one)</param> | 139 | /// <param name="script">Array of strings, one-per-batch (often just one)</param> |
140 | protected virtual void ExecuteScript(DbConnection conn, string[] script) | 140 | protected virtual void ExecuteScript(DbConnection conn, string[] script) |
141 | { | 141 | { |
142 | using (DbCommand cmd = conn.CreateCommand()) | 142 | using (DbCommand cmd = conn.CreateCommand()) |
143 | { | 143 | { |
144 | cmd.CommandTimeout = 0; | 144 | cmd.CommandTimeout = 0; |
145 | foreach (string sql in script) | 145 | foreach (string sql in script) |
146 | { | 146 | { |
147 | cmd.CommandText = sql; | 147 | cmd.CommandText = sql; |
148 | try | 148 | try |
149 | { | 149 | { |