Errors

If any errors occur during operations, they are returned by the methods as exceptions. Handle these exceptions to debug or manage issues in your workflows.

try:
    db.commit(database="mydatabase", table="mytable")
except Exception as e:
    print(f"Error: {e}")