vote up 1 vote down star

I am trying to connect a simple groovy script to the DB.

Code:

import groovy.sql.Sql
class GroovySqlExample2{
  static void main(String[] args) {
    def sql = Sql.newInstance("jdbc:sqlserver://MYSERVERIP", "uname",
           "pwd", "net.sourceforge.jtds.jdbc.Driver")
    sql.eachRow("select * from word"){ 
      println it.spelling + " ${it.part_of_speech}"
    }
  }
}

I've placed jtds-1.2.3.jar inside C:\groovy-1.6.3\lib folder but the above code keeps complaining:

java.lang.ClassNotFoundException: net.sourceforge.jtds.jdbc.Driver
flag

67% accept rate
Though not related to your error just wanted to point out that the url should be jdbc:jtds:sqlserver://MYSERVERIP, the one you have listed is incorrect since it's missing the jtds. – John Wagenleitner Sep 9 at 17:41

1 Answer

vote up 0 vote down check

Make sure you have a GROOVY_HOME Environment variable set to c:\groovy-1.6.3

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.