Connecting to local SQL Server

Hi,

I have SQL Server installed on my machine. I don't have any special password set up for it. I want to know what the connection string would be that I would want to use to connect to one of the local databases tables.

Any help much appreciated.

Mike


Answer this question

Connecting to local SQL Server

  • saavyone

    Stolen shamelessly from connectionstrings.com:

    Address=127.0.0.1;Database=Northwind;Integrated Security=true


    (I don't have access to a SQL server right now, so I can't test it)

  • dick9

    Thanks, man.

    That is where I went, to. 

    I was using localhost, and had it spelled just "local". ....

  • Connecting to local SQL Server