Reputation: 1145
What is the best way to allow a Java Application to connect to a MS SQL database in Ubuntu. I am currently trying jTDS but can not seem to get the connection to the server established.
Upvotes: 1
Views: 555
Reputation: 2144
Your best bet would probably to go with Microsoft SQL Server 2005 JDBC Driver 1.0
It's a very simple setup with some very nice documentation. Also, if your using a server name rather than an ip, make sure you have the FULL servername. For example abc123.thealphabet.com rather than just abc123. Hope this helps!
Upvotes: 2