* @return true / false
*/
private boolean isJaybird2DriverInstalled() {
try {
Class.forName("org.firebirdsql.jdbc.FBDriver");
FBDriver fb = new FBDriver();
return fb.getMajorVersion() >= 2;
} catch (ClassNotFoundException e) {
log.error(i18n.ERROR_DRIVER_NOT_INSTALLED);
// This was shown at application start up. The message box did hide behind the splash screen.
// In general it is not a good idea to pop up message boxes at start up from within Plugin intializations.