Found a solution - but needs a patch of net.ucanaccess.converters.SQLConverter
1. add "END" to KEYWORDLIST
2. in basicEscapingIdentifier add at least these lines
escaped = escaped.replaceAll("€", "EUR");
escaped = escaped.replaceAll("²", "2");
escaped = escaped.replaceAll("³", "3");
with this patch I was able to load my file in console.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Found a solution - but needs a patch of net.ucanaccess.converters.SQLConverter
1. add "END" to KEYWORDLIST
2. in basicEscapingIdentifier add at least these lines
escaped = escaped.replaceAll("€", "EUR");
escaped = escaped.replaceAll("²", "2");
escaped = escaped.replaceAll("³", "3");
with this patch I was able to load my file in console.