I have added an advanced example which might help you.
https://github.com/AccelerationNet/wp-db-table-editor/blob/master/examples/cf7dbsubmit_integration.php
Your question implies that this example is a bit overkill, and that maybe I need to add some notification actions as well.
I just released version 1.2.8 which has notification actions in place. From the new readme:
—-
dbte_row_deleted, dbte_row_updated, dbte_row_inserted
Called after a row is deleted, updated, or inserted passes
`
add_action(‘dbte_row_deleted’, ‘my_dbte_row_deleted’, 10, 2);
function my_dbte_row_deleted($currentTable, $idRemoved){
// do things
}
add_action(‘dbte_row_updated’, ‘my_dbte_row_upserted’, 10, 4);
add_action(‘dbte_row_inserted’, ‘my_dbte_row_upserted’, 10, 4);
function my_dbte_row_upserted($currentTable, $values, $columns, $indexedModified){
// do things
}
`
Please do let me know if this is not as resolved as I hope