首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

使用SQL参数进行insert操作一直报错解决方法

2012-03-27 
使用SQL参数进行insert操作一直报错用这一句插入数据时发现一直报错说是“”号附近有错误SQLHelper.Execute

使用SQL参数进行insert操作一直报错
用这一句插入数据时发现一直报错说是“=”号附近有错误 
SQLHelper.ExecuteNonQuery("insert into T_Book (Name,Type,Price) values(Name=@name,Type=@type,Price=@price)", new SqlParameter("name", bookName), new SqlParameter("type", BookType), new SqlParameter("price", bookPrice));

执行这一句却可以,我是哪里写错了,一直没发现
SQLHelper.ExecuteNonQuery("update T_Admin set ErrorTimes=0 where Name=@name", new SqlParameter("name", name));

[解决办法]
"insert into T_Book (Name,Type,Price) values(@name,@type,@price)"
[解决办法]

SQL code
insert into T_Book (Name,Type,Price) values(@name,@type,@price) 

热点排行