目的是将表数据输出为DBASE3的dbf文件
在窗体放置了ado 的 connectcommand控件
做了一个udl文件,没有登陆服务器信息。
将文件的字串拷入connect的connectstring属性
command的conn选connect控件,
执行程序
lstr:='c:aa';
ADOComm.CommandText := 'create table '+lstr+' (cno nvarchar(10),cname nvarchar(10),zhje float(10,2),jje float(10,2),bje float(10,2))';
ADOComm.Execute;
ADOComm.CommandText:=' insert into '+lstr+' select cno,cname,zhje,jje,bje from YL_PRINTJBTEMP where (lb=''ynmz'') and tjrid='''+lcno+'''';
ADOComm.Execute;
在第3句 ADOComm.Execute;
出错,如何处理?
|