GridView用sqldatasource绑定,编辑更新时总是有错误!!!特有意思,又特让人头疼
GridView用sqldatasource绑定,编辑更新时总是有错误!!!数据库里的列有money类型的,在更新时总是出现这样的错误!
不允许从数据类型 nvarchar 到数据类型 money 的隐性转换(表 'driverMS.dbo.Charge_standard',列 'train')。请使用 CONVERT 函数来运行此查询。
train是培训费用的意思。
update Charge_standard set train='" + ((TextBox)(GridView1.Rows[e.RowIndex].Cells[5].Controls[0])).Text.Trim().ToString() + "' where ID='" + GridView1.DataKeys[e.RowIndex].Value + "'
后来我去掉了train的单引号:
update Charge_standard set train=" + ((TextBox)(GridView1.Rows[e.RowIndex].Cells[5].Controls[0])).Text.Trim().ToString() + " where ID='" + GridView1.DataKeys[e.RowIndex].Value + "'
再点更新的话还是会弹出同样的错误,但是数据库确更新了,,
谁知道这是什么问题呢?
怎么才能解决这个问题呢?