diff options
author | Justin Clark-Casey (justincc) | 2015-01-13 20:27:37 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-01-13 20:27:37 +0000 |
commit | 59c0df962a9dcac896cae2ce9b908be37047825c (patch) | |
tree | d2659efd00ebdd15fd500fa7ab1f80e74a029de2 | |
parent | Remove extraneous colon when setting TagId parameter in PGSQLUserProfilesData... (diff) | |
download | opensim-SC-59c0df962a9dcac896cae2ce9b908be37047825c.zip opensim-SC-59c0df962a9dcac896cae2ce9b908be37047825c.tar.gz opensim-SC-59c0df962a9dcac896cae2ce9b908be37047825c.tar.bz2 opensim-SC-59c0df962a9dcac896cae2ce9b908be37047825c.tar.xz |
Remove quotes from column selection in PGSQLUserProfilesData.SetUserAppData()
This may have been preventing it from working.
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 10 |
1 files changed, 5 insertions, 5 deletions
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 | |||
1026 | string query = string.Empty; | 1026 | string query = string.Empty; |
1027 | 1027 | ||
1028 | query += "UPDATE userdata SET "; | 1028 | query += "UPDATE userdata SET "; |
1029 | query += "\"TagId\" = :TagId, "; | 1029 | query += "TagId = :TagId, "; |
1030 | query += "\"DataKey\" = :DataKey, "; | 1030 | query += "DataKey = :DataKey, "; |
1031 | query += "\"DataVal\" = :DataVal WHERE "; | 1031 | query += "DataVal = :DataVal WHERE "; |
1032 | query += "\"UserId\" = :UserId AND "; | 1032 | query += "UserId = :UserId AND "; |
1033 | query += "\"TagId\" = :TagId"; | 1033 | query += "TagId = :TagId"; |
1034 | 1034 | ||
1035 | try | 1035 | try |
1036 | { | 1036 | { |