def delete(self, id): """Delete a record from the database for an ID""" query = text(""" DELETE FROM tblUser WHERE id=:id """) result = self.execute(query, id=id) return result.rowcount > 0