Page 1 of 1

ExecuteStatement in Row_Inserted event

Posted: Fri May 10, 2024 4:40 pm
by iggabz

Good day,

is this possible?

function Row_Inserted($rsold, $rsnew)
{
    //Log("Row Inserted");
    // Insert record
    $myResult = ExecuteStatement("INSERT INTO MyTable1 (Field1, Field2, Field3) VALUES (Value1, Value2, Value3)");
    $myResult = ExecuteStatement("INSERT INTO MyTable2 (Field1, Field2, Field3) VALUES (Value1, Value2, Value3)");
}

Re: ExecuteStatement in Row_Inserted event

Posted: Fri May 10, 2024 5:02 pm
by mobhar

Of course, it is possible.


Re: ExecuteStatement in Row_Inserted event

Posted: Mon May 13, 2024 8:27 am
by iggabz

thank you