Revision 1996
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/db_xml.py | ||
---|---|---|
115 | 115 |
for child in children: put_(child, id_) |
116 | 116 |
|
117 | 117 |
return id_ |
118 |
|
|
119 |
def put_table(db, node, table, row_ct_ref=None, table_is_esc=False): |
|
120 |
'''@param node The XML tree that transforms the input to the output. Similar |
|
121 |
to put()'s node param, but with the input column name prefixed by "$" |
|
122 |
in place of the column value. |
|
123 |
''' |
|
124 |
import sys; sys.stderr.write(str(node)) |
|
125 |
raise NotImplementedError('By-column optimization not available yet') |
Also available in: Unified diff
db_xml.py: Added put_table() (without implementation)