无为 帮帮忙!谢谢!
var sql = "update mapTable set 类别 = '" + theClass + "',地点名称 = '" + theName + "',X坐标 = " + theX + ",Y坐标 =" + theY + ",地址 = '" + theAddress ;
sql = sql + "',邮编 = '" + thePostalcode + "',电话 = '" + theTel + "',传真 = '" + theFax + "',网址 = '" + theWeb + "'";
conn.BeginTrans;
conn.Execute(sql); //这行出错
conn.CommitTrans;
conn.close;