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
I have checked and rechecked the password to make sure it was correct.
I have made sure that "SQL Server and Windows Authentication mode" is set in the server properties.
I have also tried to create a completely new user account and granted admin for the database.
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!