Revision 2069
Added by Aaron Marcuse-Kubitza almost 13 years ago
lib/sql.py | ||
---|---|---|
346 | 346 |
return run_query(db, query, params, recover, cacheable) |
347 | 347 |
|
348 | 348 |
def mk_insert_select(db, table, cols=None, select_query=None, params=None, |
349 |
returning=None, recover=None, cacheable=True, table_is_esc=False):
|
|
349 |
returning=None, table_is_esc=False): |
|
350 | 350 |
''' |
351 | 351 |
@param returning str|None An inserted column (such as pkey) to return |
352 | 352 |
@param table_is_esc Whether the table name has already been escaped |
Also available in: Unified diff
sql.py: mk_insert_select(): Removed unused params recover and cacheable