Why do I get "Syntax Error in ALTER statement" for the following? I am using VB6 and msjet4.0
conn.Execute "ALTER TABLE Table1 RENAME field1 TO field2"
I also tried this to no avail:
conn.Execute "ALTER TABLE Table1 RENAME COLUMN field1 TO field2"
I can execute DROP and ADD with ALTER TABLE with no problem, but get the same error when using MOVE with ALTER TABLE.
Any help greatly appreciated!