Customer Portal

SQL Server on Solaris

Comments 2

  • Avatar
    oldforum
    0
    Comment actions Permalink
    The problem is your classpath settings are overriden by -cp argument (see manual page for java). Either add all jar files to CLASSPATH, or set them all on command line.
  • Avatar
    oldforum
    0
    Comment actions Permalink
    Hi !
    I don't have experience with MSSQL JDBC driver, but the error message leads me following speculation:

    It looks like Java can't find the class specified as dbDriver in your classpath. You may try to put the section you described as your classpath directly to "-cp" option of java command.

    Also try to look inside the jars that the class is present somewhere.

    One more question - are you sure that the Microsoft JDBC driver is pure Java ? It may depend on some Windows specific dll which is probably not present on Solaris.
    There should be free implementation of the protocol MS SQL and Sybase DBs use to communicate between server and client.
    Have a look at http://jtds.sourceforge.net/

Please sign in to leave a comment.