|
Hm this one seems not fully resolved - at least i am getting this:
java.security.AccessControlException: access denied ("java.sql.SQLPermission" "callAbort")
|
I am running without a SecurityManager so of cause i did not and don't want to configure this stuff.
How should this work without?
Maybe don't create one but try to get a existing one:
SecurityManager sm = System.getSecurityManager();
|
if(sm != null) {
|
// check it
|
} else {
|
// just abort
|
}
|
PS: Don't know how to reopen it - seems if have no button above todo this.
|