I know how to create a table at runtime by setting up FieldDefs and IndexDefs and calling CreateTable; but how can I add fields and indeces to an already existing table? -- Doug Burbidge mailto:doug@ultrazone.com
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.
MyDatabase.Execute('ALTER TABLE ' + TableName + ' ADD myfield1 VARCHAR(8), ADD myfield2 VARCHAR(8);', nil, False, nil);