I am trying to create a temporary table in code so can easly append records to another table. My new table it.dbf has data1 and data2 as the field names I would like to have F1 and F2 as the field names. My code looks something like this:
Store F1 to data1
store F2 to data2
CREATE TABLE c:\IT (Data1 C(10), Data2 C(10))
Store F1 to data1
store F2 to data2
CREATE TABLE c:\IT (Data1 C(10), Data2 C(10))