Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
What problems are you having with jTDS - what are you trying, what errors are you getting, etc.? TCP or named pipes? Can you definitely connect to the database from another Windows machine i.e. do you have the ports opened and not firewalled off? – Rup Nov 9 '10 at 14:37

1 Answer

up vote 2 down vote accepted

Your best bet would probably to go with Microsoft SQL Server 2005 JDBC Driver 1.0

http://www.microsoft.com/downloads/en/details.aspx?familyid=e22bc83b-32ff-4474-a44a-22b6ae2c4e17&displaylang=en

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!

share|improve this answer
Installed and had some issues at first, you were spot on about the fully qualified name, once i fixed that it worked flawlessly!!! Thanks – JustinY17 Nov 9 '10 at 15:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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