如何动态创建*.dbf文件?(50分)

  • 主题发起人 主题发起人 图兰多
  • 开始时间 开始时间

图兰多

Unregistered / Unconfirmed
GUEST, unregistred user!
从oracle数据库中读取数据,存为一个*.dbf。但事先这个dbf文件不存在。如何动态生成呢?
大侠教我!
 
createtable

Delphi帮助:
with Table1 do begin
Active := False;
DatabaseName := 'DBDEMOS';
TableType := ttParadox; //ttFoxpro
TableName := 'CustInfo';

{ Don't overwrite an existing table }

if not Table1.Exists then begin
{ The Table component must not be active }
{ First, describe the type of table and give }
{ it a name }
{ Next, describe the fields in the table }
with FieldDefs do begin
Clear;
with AddFieldDef do begin
Name := 'Field1';
DataType := ftInteger;
Required := True;
end;
with AddFieldDef do begin

Name := 'Field2';
DataType := ftString;
Size := 30;
end;
end;
{ Next, describe any indexes }
with IndexDefs do begin
Clear;
{ The 1st index has no name because it is
{ a Paradox primary key }
with AddIndexDef do begin
Name := '';
Fields := 'Field1';
Options := [ixPrimary];
end;
with AddIndexDef do begin

Name := 'Fld2Indx';
Fields := 'Field2';
Options := [ixCaseInsensitive];
end;
end;
{ Call the CreateTable method to create the table }
CreateTable;
end;
end;

type TTableType = (ttDefault, ttParadox, ttDBase, ttASCII, ttFoxPro);
ttparadox是Paradox数据库,dbf自己改成foxpro
 
这样只是创建了一个table,如何把它存到磁盘上呢?
 
>>这样只是创建了一个table
这是用一个Table控件创建一个表。
执行后会在DBDemos别名所在目录下创建一个名为CustInfo.dbf的表。
你可以把别名用目录代替,如
DatabaseName := 'd:/test';
这样会在D:/test目录下创建。
 
使用bde生成表,然后就会在别名所在的目录中了。
 
接受答案了。散分
 
后退
顶部