Zitat:
The dBASE driver supports the Alter Table statement to add one or more columns to a table or to delete (drop) a single column.
The Alter Table statement has the form:
ALTER TABLE table_name {
ADD column_name data_type
| ADD (column_name data_type [, column_name data_type]. . . )
| DROP [COLUMN] column_name
}