Community
Participate
Working Groups
EDT:Tutorial: RUI With DataBase Lesson 8 Next, create the function that adds data. Update the addRow function so that the code is as follows: function addRow(event Event in) call dbService.addPayment(new paymentRec) returning to recordAdded onException serviceLib.serviceExceptionHandler; end I think this should be "serviceExeptionHandler" instead of "serviceLib.serviceExceptionHandler" function addRow(event Event in) call dbService.addPayment(new paymentRec) returning to recordAdded onException serviceExceptionHandler; end
Yes, a mistake. ServiceLib does not and will not have a delegate of that name.
is now correct.