Donald_Baugh
12 years agoOccasional Contributor
Using SQL to stage test data fails after update to TC 9.31
I was using SQL to update data for staging tests. After upgrading TestComplete to 9.31 my SQL updates no longer work. No error is returned. But my data remains unchanged my by update statements.
var mySQLStatement = "update RESIDENT_FACILITY set EXIT_DT = '02/01/2014' where PRU_CODE = 'QA_1020_1020_0003'";
var myConnection = new ActiveXObject( "ADODB.Connection" );
myConnection.Open( "DSN=OSC2OR;Uid=AAA;Pwd=" );
myConnection.execute( mySQLStatement );
myConnection.CommitTrans();
myConnection.Close();
If someone has encountered and/or solved this issue, your help would be greatly appreciate