Chapter 12: delete, update

Hello,
I followed the chapter 12 on the ‘Introduction to Programming with Xojo’ and manage to recreate the database outlined in there (AddressBook). Following the chapter, I can now successfully add a record.

I am keen to be able to delete or update the database. I tried the documentation on web for these - not much success.

Does Xojo provide code examples to delete record or update record?

Thank you in advance!

Merry Christmas or Happy holiday to you all!

Naren

To update
RowSet.Edit
Update the values of the rowset
RowSet.SaveRow
Database.CommitTransaction

To delete
RowSet.RemoveRow

Thank you, Tim Hare!
I will work on with these.