Examples of FBDriver


Examples of org.firebirdsql.jdbc.FBDriver

   * @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. 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.