TestComplete: SQL: ADO.CreateADOCommand: After a period of run time- Object is no longer valid.
- 5 years ago
Current status on this issue:
I went back to my ADO code approach and changed it up to follow an example from TestComplete help
and I added the increase connection CommandTimeout.The below is a piece of the code in place for my scripts.
function TRANSsvr()
{
var AConnection, RecSet;
// Create a Connection object
AConnection = ADO.CreateADOConnection();
AConnection.CommandTimeout = 120;
// Specify the connection string
AConnection.ConnectionString = "Provider="SQLNCLI11";Server="TRANSsvr";Database=Primary;Trusted_Connection=yes";
// Suppress the login dialog box
AConnection.LoginPrompt = false;
AConnection.Open();
// Execute a simple query
RecSet = AConnection.Execute_("SELECT * FROM Sites where Status = 0");RecSet.MoveFirst();
while(! RecSet.EOF)
{
Log.Message(RecSet.Fields.Item("name").Value);
RecSet.MoveNext();
}AConnection.Close();
}The scripts now go past ~24 sec barrier I kept hitting to where I lost my connection Obj.
I am happy with this approach now and can close off on these scripts and this thread.
Thanks all again for you assistance.