File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes JDBC and the fly likes Connecting SQL Server 2000 Thru type4 Driver Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Connecting SQL Server 2000 Thru type4 Driver" Watch "Connecting SQL Server 2000 Thru type4 Driver" New topic
Author

Connecting SQL Server 2000 Thru type4 Driver

prabhu kandanur
Greenhorn

Joined: Dec 24, 2003
Posts: 14
Hi Can any one help me out
how to connect to sqlserver 2000 thru type 4 driver(java native driver)
i have downloaded the driver from (.jar file) jtds site and added it
into my classpath.
code -
class.forName("Net.sourceforge.jtds.jdbc.Driver")
SourceURl="jdbc:jtds:sqlserver/server:1433/admin;
user="sa"
password=""
Connection con=DriverManager.getConnection(SourceURl,user,password)
---
when i execute the program, "NO SUITABLE DRIVER AVAILABLE" message is printing in the exception
--prabhu
Joe Ess
Bartender

Joined: Oct 29, 2001
Posts: 8259

Read the FAQ.

Why do I get a "java.sql.SQLException: No suitable driver" when trying to get a connection?
The "No suitable driver" exception is thrown by the DriverManager when none of the registered Driver implementations recognizes the supplied URL. This means that you either did not register jTDS with the DriverManager (by doing a Class.forName("net.sourceforge.jtds.jdbc.Driver") first) or you mistyped the URL (e.g. "jbdc:jtds:..." instead of "jdbc:jtds:...").


"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Connecting SQL Server 2000 Thru type4 Driver
 
Similar Threads
Error connecting to MSSQL Server from Hibernate
Connection Problem
sql exception : user property is missing ???
HELP please with SQL Server
Why JVM can't find my jdbc