利用asta控件编写多层数据库系统(50分)

  • 主题发起人 主题发起人 bjf2001
  • 开始时间 开始时间
B

bjf2001

Unregistered / Unconfirmed
GUEST, unregistred user!
我想将一数据表中的数据字段(a)的值付到comboxedit中,我用astaclientdateset
代码如:
try
astaclientdateset.open;
except
end;

comboxedit.items.clear;
while not astaclientdataset.eofdo
begin
comboxedit.items.add(astaclientdataset.fieldbyname('a').asstring);
next;
end;
comboxedit.itemsindex:=0;
不知道astaclientdataset的属性该怎么设置,谢谢大家
 
这样是非常没有效率的,您可以另立数据集,并
select a from table where ……,然后再对
数据集提取数据,
方法
comboxedit.items.clear;
x.first ;//不应该没有,有些时候会给你带来麻烦的
while not x.eofdo
begin
comboxedit.items.add(x.fields[0].asstring);
next;
end;
x.close ;
comboxedit.itemsindex:=0;
 
楼上的那位:》
估计他不是想问这个!
他可能想问的是服务器端和客户端数据集的设置!看例子吧!呵呵...
 
asta控件中文件上传怎样实现,我上传的文件按照客户端的参数判断(如果服务端没有该目录则创建该目录,并把文件上传到该目录下。
有的话,也上传到该目录下),asta的例子中无法上传
 
接受答案了.
 
ASTA在IIS中如何配置,请告知
非常非常感谢!!!!!!!!!!!!
Mail:xujing@shengtongprint.com
QQ:228075129
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
2K
DelphiTeacher的专栏
D
D
回复
0
查看
1K
DelphiTeacher的专栏
D
D
回复
0
查看
2K
DelphiTeacher的专栏
D
后退
顶部