def update(cls, table, set_items, where_items=None): cmd = update( table = table, set = set_items, where = where_items ) cls.execute(cmd)
def update(cls, table, set_items, where_items=None): cmd = update(table=table, set=set_items, where=where_items) cls.execute(cmd)
def update(cls, table, set_items, where_items=None): """Simple update wrapper""" cmd = update(table=table, set=set_items, where=where_items) cls.execute(cmd)