aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 20:33:36 +0000
committerJustin Clark-Casey (justincc)2015-01-13 20:33:36 +0000
commit492d49eb08bc8b7ecec1c75d7d7f9fdad3b1186f (patch)
tree2b6a9b195b304d5a90b64526447ed0188cd869bf /OpenSim/Data/MySQL
parentRemove quotes from column selection in PGSQLUserProfilesData.SetUserAppData() (diff)
downloadopensim-SC_OLD-492d49eb08bc8b7ecec1c75d7d7f9fdad3b1186f.zip
opensim-SC_OLD-492d49eb08bc8b7ecec1c75d7d7f9fdad3b1186f.tar.gz
opensim-SC_OLD-492d49eb08bc8b7ecec1c75d7d7f9fdad3b1186f.tar.bz2
opensim-SC_OLD-492d49eb08bc8b7ecec1c75d7d7f9fdad3b1186f.tar.xz
Fix MySQL and PGSQL *UserProfilesData.GetUserAppData() calls to correctly set the UserId parameter instead of the non-existing Id parameter when writing a record because none yet exists.
SQLite version is already correct for this.
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserProfilesData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLUserProfilesData.cs b/OpenSim/Data/MySQL/MySQLUserProfilesData.cs
index 1f616fe..86f2efe 100644
--- a/OpenSim/Data/MySQL/MySQLUserProfilesData.cs
+++ b/OpenSim/Data/MySQL/MySQLUserProfilesData.cs
@@ -1022,7 +1022,7 @@ namespace OpenSim.Data.MySQL
1022 1022
1023 using (MySqlCommand put = new MySqlCommand(query, dbcon)) 1023 using (MySqlCommand put = new MySqlCommand(query, dbcon))
1024 { 1024 {
1025 put.Parameters.AddWithValue("?Id", props.UserId.ToString()); 1025 put.Parameters.AddWithValue("?UserId", props.UserId.ToString());
1026 put.Parameters.AddWithValue("?TagId", props.TagId.ToString()); 1026 put.Parameters.AddWithValue("?TagId", props.TagId.ToString());
1027 put.Parameters.AddWithValue("?DataKey", props.DataKey.ToString()); 1027 put.Parameters.AddWithValue("?DataKey", props.DataKey.ToString());
1028 put.Parameters.AddWithValue("?DataVal", props.DataVal.ToString()); 1028 put.Parameters.AddWithValue("?DataVal", props.DataVal.ToString());