Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2004.12.19;
Скачать: CL | DM;

Вниз

Создание dbf   Найти похожие ветки 

 
Tor   (2004-11-22 16:25) [0]

Немог бы кто нибудь привести пример кода создания dbf руками
(FoxPro 2.6)
Благодарю!


 
Anatoly Podgoretsky ©   (2004-11-22 16:34) [1]

В справке есть примеры создания.


 
Tor   (2004-11-22 16:40) [2]

может я че то не дапонял?
используя структуру dbf файла


 
Карелин Артем ©   (2004-11-22 17:09) [3]

Builds a new table using new structure information.

procedure CreateTable;

Description

Call CreateTable at runtime to create a table using this dataset’s current definitions. If the table already exists, CreateTable overwrites the table’s structure and data. To avoid overwriting an existing table, check the Exists property before calling CreateTable.

If the FieldDefs property contains values, these values are used to create field definitions. Otherwise the Fields property is used. One or both of these properties must contain values in order to create a database table.

If the IndexDefs property contain values, these values are used to create indexes on the table.
The following example shows how to create a table.

{ Don"t overwrite an existing table }

if not Table1.Exists then begin
 with Table1 do begin
   { The Table component must not be active }
   Active := False;  
   { First, describe the type of table and give }
   { it a name }
   DatabaseName := "DBDEMOS";
   TableType := ttParadox;
   TableName := "CustInfo";
   { 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;


 
Tor   (2004-11-22 18:03) [4]

Интересно а зачем тогда в структура dbf-ника расписана по байтам?
:)



Страницы: 1 вся ветка

Текущий архив: 2004.12.19;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.042 c
1-1102006445
Руслана
2004-12-02 19:54
2004.12.19
Подскажите какой аналог в Delphi сишному UCHAR?


14-1101869436
Думкин
2004-12-01 05:50
2004.12.19
С днем рождения! 1 декабря


4-1099647728
огого
2004-11-05 12:42
2004.12.19
работа с com портами


3-1100778813
kaktus
2004-11-18 14:53
2004.12.19
Хранение и обработка данных


8-1096206699
UserUserov
2004-09-26 17:51
2004.12.19
Media Player