Search:

Type: Posts; User: copeg

Search: Search took 0.10 seconds.

  1. Replies
    7
    Views
    14,263

    Re: Cannot locate sun.jdbc.odbc.jbcOdbc driver

    It helps tremendously to provide information about where those errors are being thrown, the full stack trace of any exceptions, and any input you provided.
  2. Replies
    7
    Views
    14,263

    Re: Cannot locate sun.jdbc.odbc.jbcOdbc driver

    Should have noticed this before...check the spelling of your driver class. The following...


    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Class.forName("sun.jdbc.odbc.jdbcOdbcDriver");
    ...
  3. Replies
    7
    Views
    14,263

    Re: Cannot locate sun.jdbc.odbc.jbcOdbc driver

    You need the driver on the classpath, without which the driver cannot be found when you call Class.forName. So, you first must find the driver .jar file for the database you are using, then add it to...
Results 1 to 3 of 3