mirror of
https://github.com/opensim/opensim.git
synced 2026-05-27 04:16:00 +08:00
Correct some issues with the last commit
This commit is contained in:
@@ -205,7 +205,8 @@ namespace OpenSim.Data.MySQL
|
||||
foreach (FieldInfo fi in m_Fields.Values)
|
||||
{
|
||||
names.Add(fi.Name);
|
||||
values.Add(fi.GetValue(row).ToString());
|
||||
values.Add("?" + fi.Name);
|
||||
cmd.Parameters.AddWithValue(fi.Name, fi.GetValue(row).ToString());
|
||||
}
|
||||
|
||||
if (m_DataField != null)
|
||||
|
||||
Reference in New Issue
Block a user