Cannot connect to SQL Database using TestComplete
Hi,
I am trying to connect to SQL Database using TestComplete but it's giving me error: "Provider cannot be found. It may not be properly installed". Please help me how to connect to SQL Database, the code is below:
function connecttosqldb()
{
AConnection = ADO.CreateADOConnection();
// Specify the connection string
var AConnection = ADO.CreateADOConnection();
AConnection.ConnectionString = "Provider=System.Data.SqlClient; Server = <Server Name>; Database=<Database Name> ; user id = <User ID> ; password= <Password> ;TrustServerCertificate=True;";
// Suppress the login dialog box
AConnection.LoginPrompt = false;
AConnection.Open();
// Execute a simple query
RecSet = AConnection.Execute_("SELECT * FROM RUN INFORMATION");
// Iterate through query results and insert data into the test log
RecSet.MoveFirst();
while(! RecSet.EOF)
{
Log.Message(RecSet.Fields.Item("RUN INFORMATION").Value);
RecSet.MoveNext();
}
AConnection.Close();
}
Thanks,
Hina