I've written a program in QT that connects to a SQL Server Express DB using the following code

    QSqlDatabase db = QSqlDatabase::addDatabase("QODBC");
    bool driverAvailable = QSqlDatabase::isDriverAvailable("QODBC");
    if( !driverAvailable )
    {
        mConnected = false;
        return false;
    }
    QString connectionTemplate = "DRIVER={SQL SERVER};SERVER=%1;DATABASE=%2;";
    QString connectionString = connectionTemplate.arg(serverIP).arg(dbName);
    db.setConnectOptions("SQL_ATTR_CONNECTION_TIMEOUT=5;SQL_ATTR_ODBC_VERSION=SQL_OV_ODBC3;");
    db.setDatabaseName( connectionString );

    db.setUserName( username );
    db.setPassword( password );

However when I attempt to connect to the server I get an error stating :

    Login failed for user 'sa', Unable to Connect
  1. I have checked and rechecked the password to make sure it was correct.

  2. I have made sure that "SQL Server and Windows Authentication mode" is set in the server properties.

  3. I have also tried to create a completely new user account and granted admin for the database.

  4. I am able to successfully connect and run queries to the database through SQL server management studio

I am now completely stumped and I don't know what else to try, any help will be greatly appreciated!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Two things to try. Replace the IP address with the instance name.

And on that note do you have an instance Default install would make it

MyServer\SQLExpress

link|improve this answer
Thanks! I haven't had a change to try this yet as I haven't had access to the server. Just out of curiosity, why does using the instance name make a difference from using the IP address? – kiwijus Dec 13 '11 at 21:16
database server name is stored seperately to machine name. You can get in to a right mess if you rename your server after instaling sql server. – Tony Hopkinson Dec 13 '11 at 23:58
feedback

Just some ideas

  • Note that the default server + instance name is .\SQLExpress
  • You don't mention if you need to use the DB remotely. By default installation, SQLExpress is local-only and needs to be opened for remote access. Have a look here for how to open it up for remote access.
link|improve this answer
Yeah sorry I forgot to mention that I'm using it locally, however I have also set it up to use IP! – kiwijus Dec 13 '11 at 21:17
feedback

Your Answer

 
or
required, but never shown

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