Delete a row

A row can be deleted from a table simply by passing the ROWID as a parameter to the delete_row() method. This method will return true as response on deletion of the row.

To know more about the component instancedatastore_service and the table instancetable_service used below, please refer to their respective help sections.

Parameters Used

Parameter Name Data Type Definition
ROWID String A Mandatory parameter. Will hold the ID of the row to be deleted.
    
copy
#Delete a row datastore_service = app.datastore() table_service = datastore_service.table("CITY") row_response = table_service.delete_row(5249000000032461)
Info : Refer to the SDK Scopes table to determine the required permission level for performing the above operation.

Last Updated 2025-03-28 18:24:49 +0530 +0530

ON THIS PAGE