Z
zh_2001
Unregistered / Unconfirmed
GUEST, unregistred user!
query1.close;
query1.sql.clear;
query1.sql.add('select s11 as shs11 from show128 where s2="综合指数"');
query1.open;
cjsss:=query1.FieldByName('shs11').asfloat;//cjsss是single类型;show128是dbf表。
执行的时候cjsss始终是0!检查,出现如下信息:
Variable "self' inaccessible here due to optimization;
show128 中有符合条件的记录,为什么不返回数值??程序中另一个地方类似的语句
除了表不同,其他都一样,却有返回值!
query1.sql.clear;
query1.sql.add('select s11 as shs11 from show128 where s2="综合指数"');
query1.open;
cjsss:=query1.FieldByName('shs11').asfloat;//cjsss是single类型;show128是dbf表。
执行的时候cjsss始终是0!检查,出现如下信息:
Variable "self' inaccessible here due to optimization;
show128 中有符合条件的记录,为什么不返回数值??程序中另一个地方类似的语句
除了表不同,其他都一样,却有返回值!