Hi Kazuhiro,
I appreciate your help very much. I managed to make it work. For anybody else' benefit, this is what I did:
- I downloaded the Microsoft JDBC Driver 4.0 and installed it in my Local Maven repository
- I added my local maven repo to the resolver in my SBT build file: resolvers += Resolver.mavenLocal
- I configured the driver class as: com.microsoft.sqlserver.jdbc.SQLServerDriver
- I configured database connection URL using the format: jdbc:sqlserver://ServerHost:PORT;DatabaseName=DB_NAME
- I, of course, added the username and the password to the config.
Once I made it work with Microsoft JDBC Driver, I didn't try making jTDS work. Well, I assume it would follow the same template of doing things. But it's work for another day.
Cheers,
Nelson.