Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
VFP help said:For free tables, field names can be up to 10 characters long. For database tables, field names can be up to 128 characters long.
Mike Lewis said:Whether the table appears in the project manager has nothing to do with whether it is a free table or not.
Chris said:But you make me wonder, if I drag a DBF into the project manager window, that is a DBF of a DBC, and I drag it explicitly into the node "Free tables", does the project manager automatically sort it in as database table including the DBC node with the database file name or will it be listed under free tables even though it isn't.
And in short this leads to a Project Error message:
TRY
[indent]BEGIN TRANSACTION[/indent]
[indent][indent]INSERT INTO mytable (id, field1, field2) VALUES (1, "value 1", "value 2")[/indent][/indent]
[indent][indent]INSERT INTO mytable (id, field1, field2) VALUES (2, "value 3", lcUndeclared)[/indent][/indent]
[indent]END TRANSACTION[/indent]
CATCH TO loException
[indent]ROLLBACK[/indent]
ENDTRY