def update(cls, table, set_items, where_items=None):
     cmd = update(
         table = table,
         set = set_items,
         where = where_items
     )
     cls.execute(cmd)
Beispiel #2
0
 def update(cls, table, set_items, where_items=None):
     cmd = update(table=table, set=set_items, where=where_items)
     cls.execute(cmd)
Beispiel #3
0
 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)
Beispiel #4
0
 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)