You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 29, 2025. It is now read-only.
im_sure_im_not_use_conditions() - security so that you do not unknowingly delete everything
Endpoints
execute()
get_sql()
Example Code
# delete with whereconnection.table("myTable").delete().where("id", 10).execute()
# delete without where is not possible on this way, it wil throws an errorconnection.table("myTable").delete().execute()
# if you really want to delete all data in a table use this way# the true is important, otherwise it will also throw an errorconnection.table("myTable").delete().im_sure_im_not_use_conditions().execute()
# but you can still get the sql this wayconnection.table("myTable").delete().get_sql()