From 59c0df962a9dcac896cae2ce9b908be37047825c Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 13 Jan 2015 20:27:37 +0000 Subject: Remove quotes from column selection in PGSQLUserProfilesData.SetUserAppData() This may have been preventing it from working. --- OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Data') diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs index 782a5bc..e799eb8 100644 --- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs @@ -1026,11 +1026,11 @@ namespace OpenSim.Data.PGSQL string query = string.Empty; query += "UPDATE userdata SET "; - query += "\"TagId\" = :TagId, "; - query += "\"DataKey\" = :DataKey, "; - query += "\"DataVal\" = :DataVal WHERE "; - query += "\"UserId\" = :UserId AND "; - query += "\"TagId\" = :TagId"; + query += "TagId = :TagId, "; + query += "DataKey = :DataKey, "; + query += "DataVal = :DataVal WHERE "; + query += "UserId = :UserId AND "; + query += "TagId = :TagId"; try { -- cgit v1.1