苦
苦中求乐
Unregistered / Unconfirmed
GUEST, unregistred user!
用QUERY、TABLE数据集向SQL SERVER2000中写入小数时,会发生丢位的现象。
如:
with Query1 do
begin
Append;
FieldByName('aaa').AsCurrency:=StrToCurr(Edit1.Text);
Post;
end
aaa 在表中是一decimal列,如edit1.text='4254578236.12'时,在表中保存为4254578236.1
能否在不改变类型的 情况下,解决此问题,这是BUG么?
请各位不吝赐教![^]
如:
with Query1 do
begin
Append;
FieldByName('aaa').AsCurrency:=StrToCurr(Edit1.Text);
Post;
end
aaa 在表中是一decimal列,如edit1.text='4254578236.12'时,在表中保存为4254578236.1
能否在不改变类型的 情况下,解决此问题,这是BUG么?
请各位不吝赐教![^]