Hi!
Im trying to create a table from code with SQLite from the guide on the components homepage.
Everything compiles fine except that I get these errors:
frmmain.pas(89,37) Error: Identifier not found "ftAutoInc"
frmmain.pas(90,37) Error: Identifier not found "ftString"
frmmain.pas(91,37) Error: Identifier not found "ftString"
This is the code for them:
if not TableExists then
begin
FieldDefs.Clear;
FieldDefs.Add('Id', ftAutoInc);
FieldDefs.Add('Date', ftString);
FieldDefs.Add('Text', ftString);
CreateTable;
end;
The FieldDefs.Add works, and can even be code completed. It's just the ft stuff.
Maybe I lack some include-file or so?
Thanks
