Best Practices Adding/Removing From DB

Row objects have ids that you can use if you want to check the specific record from the database.

# 'jane_smith' is a Row object from the 'people' table
janes_id = jane_smith.get_id()

r = app_tables.people.get_by_id(janes_id)