主题:关于创建临时表的问题
[color=008080]代码运行后出现“找不到temp.dbf”
怎么解决?
临时表是需要手动创建的吗?
谢谢!
另:为什么这个网站很多链接已损坏,以前发过的贴也打不开了。
代码如下:
*在记录中查找符合查找条件的记录
close all
*创建临时表
creat cursor temp (A n(2),B c(10),C c(8),D c(8))
*确定查询长度
_length_st=alltrim(thisform.text1.value)
_length_en=alltrim(thisform.text2.value)
*清理数据
use temp.dbf
delete all
pack
append from rabiesinfo.dbf
use
if file("show.dbf")=.t.
delete file show.dbf
endif
*查询符合条件的记录
select * from temp where alltrim(序列长度)>=alltrim(_length_st) .and. alltrim(序列长度)<=alltrim(_length_en) into table show
close all
*显示记录
do form rbinfoserout[/color]
怎么解决?
临时表是需要手动创建的吗?
谢谢!
另:为什么这个网站很多链接已损坏,以前发过的贴也打不开了。
代码如下:
*在记录中查找符合查找条件的记录
close all
*创建临时表
creat cursor temp (A n(2),B c(10),C c(8),D c(8))
*确定查询长度
_length_st=alltrim(thisform.text1.value)
_length_en=alltrim(thisform.text2.value)
*清理数据
use temp.dbf
delete all
pack
append from rabiesinfo.dbf
use
if file("show.dbf")=.t.
delete file show.dbf
endif
*查询符合条件的记录
select * from temp where alltrim(序列长度)>=alltrim(_length_st) .and. alltrim(序列长度)<=alltrim(_length_en) into table show
close all
*显示记录
do form rbinfoserout[/color]