Revision 2067
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/db_xml.py | ||
---|---|---|
131 | 131 |
put()'s node param, but with the input column name prefixed by "$" in |
132 | 132 |
place of the column value. |
133 | 133 |
@param commit Whether to commit after each query |
134 |
@return returning_into tuple(table, col) Where the INSERT RETURNING values
|
|
135 |
(pkeys) are made available
|
|
134 |
@return tuple(table, col) Where the pkeys (from INSERT RETURNING) are made
|
|
135 |
available |
|
136 | 136 |
''' |
137 | 137 |
def qual_name(table): return sql.qual_name(db, in_schema, table) |
138 | 138 |
def pkey(table): return sql.pkey(db, table, True) |
Also available in: Unified diff
db_xml.py: put_table(): Corrected @return doc