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

请帮忙看一下为什么总报strtofloat 不是可以识别的函数解决方法

2012-01-14 
请帮忙看一下为什么总报strtofloat 不是可以识别的函数updatetljt.dbo.f_pzdjdansetxsxs+xs*strtofloat(e

请帮忙看一下为什么总报strtofloat 不是可以识别的函数
update   tljt.dbo.f_pzdjdan   set   xs=xs+xs*strtofloat(edit1.text)  


[解决办法]
strtofloat 这个是做什么。。。
[解决办法]

sql= 'update tljt.dbo.f_pzdjdan set xs=xs+xs* '+strtofloat(edit1.text)

[解决办法]
try

string strSQL= "update tljt.dbo.f_pzdjdan set xs=xs+xs* " + strtofloat(edit1.text)
[解决办法]
是在delphi中的吧
[解决办法]
应该是这样吧
"update tljt.dbo.f_pzdjdan set xs=xs+xs* " + strtofloat(edit1.text)
[解决办法]
hejiahuanle() ( ) 信誉:100 Blog 加为好友 2007-06-11 17:25:36 得分: 0


sql.Add( 'update tljt.dbo.f_pzdjdan set xs=xs+xs* '+strtofloat(edit1.Text) where bmmc= ' ' '+trim(combobox1.Text)+ ' ' ' and gz= ' ' '+trim(combobox3.Text)+ ' ' ' ');

还是报错


--------------
try

sql.Add( "update tljt.dbo.f_pzdjdan set xs=xs+xs* " + strtofloat(edit1.text) + " where bmmc= ' "+trim(combobox1.Text)+ " ' and gz= " '+trim(combobox3.Text)+ " ' ");

热点排行