vote up 0 vote down star

Why won't my connection string to SQL server work with Windows authentication? A sql user works fine, acme\administrator or administrator@acme.com won't work. This is a Win Form app written in C#.

    {
        OdbcConnection cn = null;
        String connectionString;
            connectionString = "Driver={SQL Server};Server=" + cbxDataSources.Text +";Database=" + strDatabase + ";";

            connectionString += "UID=" + textBoxUserName.Text + ";";
            connectionString += "PWD=" + textBoxPassword.Text + ";";

        cn = new OdbcConnection(connectionString);
        return cn;
    }

Thanks guys

flag
2  
I like this site a lot for helping out with these types of questions: connectionstrings.com – Eric Tuttleman Oct 15 '08 at 22:51

5 Answers

vote up 1 vote down

Is there any error messages?

link|flag
vote up 12 vote down

You are using SQL Server authentication.

Windows authentication authenticates your connection with the Windows identity of the currently executing process or thread. You cannot set a username and password with Windows authentication. Instead, you set Integrated Security = SSPI.

link|flag
vote up 6 vote down

You have to connect using a Trusted Connection.

2005:

Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes;

2000:

Driver={SQL Server};Server=myServerAddress;Database=myDataBase;Trusted_Connection=Yes;
link|flag
vote up 0 vote down

Trusted_Connection=Yes; was what I needed, thanks for that. Can Trusted_Connection=Yes; be used for both sql authentication and windows authentication? It seems to work with both?

Thanks

link|flag
No. Trusted_Connection / Integrated Security means Windows authentication, and UID/PWD means SQL authentication. – Justice Oct 16 '08 at 2:04
vote up 0 vote down

check the following link

http://csharp.net-informations.com/ado.net/csharp-connection-string.htm

bolton.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.