Forum: "Bases";
Current archive: 2002.01.08;
Download: [xml.tar.bz2];
Down
Creating a table from Delphi. Find similar branches
← →
Oleon (2001-12-04 15:14) [0]If you create a table with your hands in Delphi 3, then when we write TableType: = ttDBase, a table of type Visual dBASE7 is created, but I need DBASEIII +, how can I do this? Tell me please.
← →
Mick (2001-12-04 15:24) [1]TableLevel: = 3;
← →
Oleon (2001-12-04 15:42) [2]Thanks a lot, I'll try.
← →
Oleon (2001-12-04 16:14) [3]Does not help. Writes Invalid Parametr. Table Does not exist.
← →
Mick (2001-12-04 17:42) [4]
with TTable.Create (nil) do try TableType: = ttDBase; TableLevel: = 3; DatabaseName: = "C: \ Data"; TableName: = "Dbase 3 Level Table.dbf"; with TFieldDefs.Add do begin DataType: = ftBCD; Name: = "FirstField"; end; with TFieldDefs.Add do begin DataType: = ftString; Name: = "SecondField"; Size: = 10; end; CreateTable; finally Free end;
Pages: 1 whole branch
Forum: "Bases";
Current archive: 2002.01.08;
Download: [xml.tar.bz2];
Memory: 0.56 MB
Time: 0.023 c