Главная страница
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.051 c
4-1099759708
AnD
2004-11-06 19:48
2004.12.19
Иконка в SystemTray


14-1101562175
ИМХО
2004-11-27 16:29
2004.12.19
Шевченко лидирует в опросе "Лучший футболист Европы"


4-1099669306
Torin
2004-11-05 18:41
2004.12.19
Проверка наличия FTP сервиса у удалнного компьютера


1-1102259020
PURGEN
2004-12-05 18:03
2004.12.19
Компиляция


1-1101973372
denis24
2004-12-02 10:42
2004.12.19
горизонтальный скролинг у listbox