Revision 2196
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/db_xml.py | ||
---|---|---|
182 | 182 |
row[out_col] = (value,) # value is literal value |
183 | 183 |
|
184 | 184 |
# Insert node |
185 |
pkeys_loc = sql.put_table(db, esc_name(out_table), in_tables, row, |
|
186 |
row_ct_ref=row_ct_ref, table_is_esc=True) |
|
185 |
pkeys_loc = sql.put_table(db, esc_name(out_table), in_tables, row, limit,
|
|
186 |
start, row_ct_ref=row_ct_ref, table_is_esc=True)
|
|
187 | 187 |
if commit: db.db.commit() |
188 | 188 |
|
189 | 189 |
# Insert children with fkeys to parent |
Also available in: Unified diff
db_xml.py: put_table(): Pass limit and start to sql.put_table()