I'm trying to use MS SQL driver with jdbc app with local data flow server
jdbc --url='jdbc:sqlserver://server' --driver-class-name=com.microsoft.sqlserver.jdbc.SQLServerDriver
As expected, the driver is not in classpath and I get
Cannot load driver class: com.microsoft.sqlserver.jdbc.SQLServerDriver
when deploying the stream.
I also tried to invoke the data flow server with -cp argument:
java -cp "C:\path\to\msjdbc.jar " -jar spring-cloud-dataflow-server-local-1.0.1.RELEASE.jar
- same result.
Can anyone help to resolve this ?
Thanks