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 to a server instance of SQL Server 2010 that I installed recently using NetBeans. I have downloaded the latest JDBC driver for MS SQL Server, but I cannot get the right connection string to connect to this database. I think I am missing the following values in the connection:

  • Port
  • Instance Name
  • and I am not sure if my username should be /*** or only the name that appears after the /

'jdbc:sqlserver://'

Any help appreciated,

Ted

share|improve this question

1 Answer

up vote 1 down vote accepted

This should help:

http://netbeans.org/kb/docs/java/gui-db.html

Edit: As per comment below this was for derby stuff. Here is a more useful link but it's not got any information on supplying the DB username or password. It might be enough depending on your exact requirement.

share|improve this answer
That stuff is for derby.. I am having trouble is finding the information that is associated to SQLServer so that I can make the connection string. I don't have problems connecting netbeans and derby – Flethuseo Jul 31 '11 at 22:59
Apologies. I have found this which is what you're looking for but there's no mention about the username – a12jun Aug 1 '11 at 19:13

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.