在delphi中如何根据已有的VFP表创建一个相同结构的新表? (10分)

  • 主题发起人 主题发起人 lcl800
  • 开始时间 开始时间
L

lcl800

Unregistered / Unconfirmed
GUEST, unregistred user!
在delphi中如何根据已有的VFP表创建一个相同结构的新表?
query 不支持select * into b from a
和crea b as select * from a
我记得曾经看了一个帖子 好像有介绍,但我搜索了无数次,都没找到
 
多半不行,ODBC这个东西只提供几个SQL命令的支持,你说那两句我也试过,不行。
可用VFP7的DCOM,可执行任何命令。
 
不知用insert into b * select * from a 可不可以
 
用insert into b * select * from a的前提是
b 已经存在!
 
使用apollo控件组,其中的apollotable中有许多类似于VFP的命令,
你所提出的问题可以用apollotable中的CopyStructure这个方法来解决

Declaration:
function CopyStructure( sFileName: String ): WordBool;

Description:
Creates a data table that has the same structure as the current data table.
The new file is created but is not left open.

Delphi Example:
{Copy structure of current table to FOO.DBF}
if ApTbl.CopyStructure( 'c:/data/foo.dbf' ) = True then
ShowMessage( 'Successful!' )
else
ShowMessage( 'Failed!' );
 
apollo是专为DBF表开发的吗?
 
哈哈 简单 copy 那个表及其索引表 然后与数据库建立连接
 
我正在找Apollo控件,哪位能告诉我一下吗?
 
http://xuhao1.3322.net/k-data.htm
我现在好穷 记得给分呀
 
谁有一个比较简单的解决方法吗?
 
多人接受答案了。
 
后退
顶部