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