Why "AFTER" not support in ucannacess ALTER TABLE?
I want to add column in position to exist column table; using database .accdb
sql = "ALTER TABLE tableName ADD COLUMN newColumnName VARCHAR(50) AFTER columnNameExist";
Example
sql = "ALTER TABLE car ADD COLUMN information VARCHAR(50) AFTER name ";
Exception
net.ucanaccess.jdbc.UcanaccessSQLException: UCAExc:::4.0.4 java.sql.SQLSyntaxErrorException: unexpected token : AFTER