13

I'm trying to connect to a MS SQL Server 2005 Express database that is running on the local host from a java program.

I have tried the same connect URL (below) that I used on another system (same jave code) that was running MS SQL Server 2000. But that does not work.

jdbc:jtds:sqlserver://127.0.0.1:1433/Finance

Any ideas?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Ron Tuffin
  • 53,859
  • 24
  • 66
  • 78

5 Answers5

23

Are you sure it is the correct instance? SQL Express tends to install as named instance, like "localhost\SQLExpress", instead of a standard instance. So it would be something like:

jdbc:jtds:sqlserver://127.0.0.1:1433/Finance;instance=<instance_name>

If this doesn't work, try dropping the instance name, and changing the port to the port used by the named instance:

jdbc:jtds:sqlserver://127.0.0.1:<instance_port>/Finance

Else try to check your connectivity through OSQL.exe tool first. You can also check the jTDS FAQ on this.

MicSim
  • 26,265
  • 16
  • 90
  • 133
7

I would suggest MicSim's url:

jdbc:jtds:sqlserver://localhost/Finance;instance=sqlexpress

Check this for jTDS Url Info.

This also has some interesting information to help troubleshoot jtds to sql express sorts of problems.

Good luck. Let us know how it goes.

eric.christensen
  • 3,191
  • 4
  • 29
  • 35
  • Thanks for the feedback. This is the first time I am working with SQLServer Express and I am finding it significantly different to SQLServer. I still cant connect properly, but it is now down to user permissions not the URL. I'll get back to it as soon as I get home (it is a home system I am working on). – Ron Tuffin Jun 26 '09 at 07:44
0

To check whether TCP/IP is enabled and the port is not blocked you can use "telnet 1433". Until telnet doesn't connect, jTDS won't either.

e.g, c:>telnet servername 1433

to enable telnet client on windows

http://social.technet.microsoft.com/wiki/contents/articles/910.how-to-enable-telnet-client-in-windows-7.aspx

Mohammed Rafeeq
  • 2,586
  • 25
  • 26
0

SQL Server Browser service is disabled by default. If you're developing .Net apps, you do not need to start SQLBrowser, but if you're using JTDS in Java, you will need to have it started. Example (no need to specify the sql server port).

<property name="connection.url">jdbc:jtds:sqlserver://localhost/yourDbName;instance=SQLEXPRESS</property> 
<property name="connection.username">yourDbUser</property>
<property name="connection.password">yourDbPassword</property>
Andreas
  • 5,393
  • 9
  • 44
  • 53
0

you can use this::

<bean id="dataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="com.microsoft.sqlserver.jdbc.SQLServerDriver" />
    <property name="url" value="jdbc:sqlserver://localhost:1433;DatabaseName=Test1" />
    <property name="username" value="sa" />
    <property name="password" value="vic123" />
</bean>
VicXj
  • 165
  • 1
  • 6