I am using UCanAccess JDBC-driver (version 3.0.3.1) to connect to the mdb-file. And I need to add the column to existing table. The problem is that the statement
UCanAccess versions 4.0.0 and above now support ALTER TABLE, e.g.,
Statement stmt = conn.createStatement(); stmt.execute("ALTER TABLE TableName ADD COLUMN newCol LONG");