05-17-2012 09:54 AM
I was just shown two ATEs that are using a common test sequence stored on a network server. It is desired that they both log their results to different MS Access databases, but changing the Connection String Expression on one ATE updates the Database Options on the other.
Is it possible to share a sequence file but log results from each ATE to different databases?
Solved! Go to Solution.
05-17-2012 11:30 AM
Hi Jim,
To accomplish this, you can add the DatabaseOptions ProcessModel Callback sequence to the same sequence file as your MainSequence, and then programmatically set the Parameters.DatabaseOptions.ConnectionString based on which ATE is calling the shared sequence. This assumes that your shared sequence file is using a process model.
-Jack
05-17-2012 11:47 AM
Thanks, Jack.
I had read about using the DatabaseOptions ProcessModel Callback but was hoping there was a way to decouple the database options from the common sequence file.