Please could someone offer some words of wisdom. I seem to be getting nowhere. I need to step through a table reading each record then looking up values in another table to replace one field in the table i am stepping through. However attempting to lookup records in another table whilst stepping through the table causes scriptase to freeze and browser needs restarting
I am attempting to do the following
While (!$dataset_1->EOF)
{
$check_sql2='SELECT …";
sc_lookup(dataset_2,$check_sql2);
…
.
.
.
.
$dataset_1->MoveNext();
}
$dataset_1->Close();
If i remove the sc_lookup command the process completes and exits as expected.
If this is a bug is there an alternative way to achieve the objective
Thanks in advance.