aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL
diff options
context:
space:
mode:
authorFernando Oliveira2013-11-28 00:10:36 -0200
committerJustin Clark-Casey (justincc)2013-12-06 00:41:02 +0000
commit9b76a46df0b93e57a1bcb2cfa28248998b8ed841 (patch)
tree30fc8c7ba0e9f1447ce9f2d383de1404e7c02483 /OpenSim/Data/PGSQL
parentminor: Use enums for setting inv/asset types on data upload rather than magic... (diff)
downloadopensim-SC_OLD-9b76a46df0b93e57a1bcb2cfa28248998b8ed841.zip
opensim-SC_OLD-9b76a46df0b93e57a1bcb2cfa28248998b8ed841.tar.gz
opensim-SC_OLD-9b76a46df0b93e57a1bcb2cfa28248998b8ed841.tar.bz2
opensim-SC_OLD-9b76a46df0b93e57a1bcb2cfa28248998b8ed841.tar.xz
Reversing back to the row["ColumnName"] case field name. http://opensimulator.org/mantis/view.php?id=6868
Diffstat (limited to 'OpenSim/Data/PGSQL')
-rw-r--r--OpenSim/Data/PGSQL/PGSQLRegionData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLRegionData.cs b/OpenSim/Data/PGSQL/PGSQLRegionData.cs
index f3e4064..b3076f0 100644
--- a/OpenSim/Data/PGSQL/PGSQLRegionData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLRegionData.cs
@@ -206,7 +206,7 @@ namespace OpenSim.Data.PGSQL
206 206
207 DataTable schemaTable = result.GetSchemaTable(); 207 DataTable schemaTable = result.GetSchemaTable();
208 foreach (DataRow row in schemaTable.Rows) 208 foreach (DataRow row in schemaTable.Rows)
209 m_ColumnNames.Add(row["column_name"].ToString()); 209 m_ColumnNames.Add(row["ColumnName"].ToString());
210 } 210 }
211 211
212 foreach (string s in m_ColumnNames) 212 foreach (string s in m_ColumnNames)