by Kazimierz Heczko » Tue 30. Apr 2024 10:14:03
Hello,
To write some values to the database after change one variable is possible when you create data extension "WriteAction" for this variable, where you select "call after EVERY CHANGE of this item value" option for Event "onItemAfterWrite" configurator. Then you have to goto the Events tab in the PmaData object, where this value exists and write code, which should read required values and writes it into the database. For writing to the database you have to create PmaAdo object in application and connect this object to the required database and then call method DbExecute where you have to create SQL querym, that writes these values into the database.
So answer is, that you have to write code, which will be write required values into the database.