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

I am trying to connect from a Java app to a SQL Server 2008 database, in Eclipse. So far I have tried using SQL Explorer and the latest JDBC drivers from Microsoft, but I haven't had any luck so far. Are there more effective ways of connecting to SQL Server 2008 from a Java app?

Thanks

share|improve this question
What's the issue? Can you provide a stack trace and/or error message from when the error happens. The MS JDBC drivers will work so it sounds like there's a potential configuration error. – Jeremy Mar 14 '11 at 5:55

4 Answers

up vote 4 down vote accepted

Yes, use JTDS.

The MS drivers are frankly rubbish. The JTDS ones support Windows Authentication and SSL from non-Windows clients too

share|improve this answer

Hi just checkout this link may be it can help you

How to make Java work with SQL Server?

share|improve this answer

You can try using the JDBC-ODBC bridge, connecting to SQL Server as a ODBC source, JDBC-ODBC Bridge Driver, but it is not recommended if you can avoid.

You can try different SQL Server JDBC drivers from third-party, like jTDS.

What kind of problems are you facing?

share|improve this answer

try a generic odbc if you're running your software on windows. you just need to install the odbc windows-driver for your sql 2008 server.

share|improve this answer

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.