How to create Paradox-Tables ?
2001-04-27 19:32:39
Use this bit of code for creating paradox tables.
\\===============================
Uses DB, DBTables;
with TTable.create(self) do
begin
DatabaseName := 'DBDEMONS';
TableName := 'Temp.db';
TableType := ttParadox;
with FieldDefs do
Begin
FieldDefs.Add('Age', ftInteger, 0, True);
FieldDefs.Add('Name', ftString, 25, False);
FieldDefs.Add('Weight', ftFloat, 0, False);
End;
IndexDefs.Add('','Age', [ixPrimary, ixUnique]);
CreateTable;
End;
ขอบ่นเจ๊ ก.ในคดีหวย 30 ล้านหน่อยเหอะ...แม่มโคตรแถ.
-
ที่เจ๊ แกพูดว่า ลุงจรูญ จำหน้า แผนได้ แต่จำคนขาย หวยไม่ได้.คืออยากจะบอกเจ๊
นะครับ ว่าแผนไปบ้านลูงจรูญ ไปพูดคุย เจรจา ก็ต้องจำได้ครับ
ส่วนจำแม่ค้าขายหวยไม่ไ...
6 years ago
No comments:
Post a Comment