Revision 2039
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/db_xml.py | ||
---|---|---|
116 | 116 |
|
117 | 117 |
return id_ |
118 | 118 |
|
119 |
class ColRef: |
|
120 |
'''A reference to a table column''' |
|
121 |
def __init__(self, name, idx): |
|
122 |
self.name = name |
|
123 |
self.idx = idx |
|
124 |
|
|
125 |
def __str__(self): return self.name |
|
126 |
|
|
119 | 127 |
def put_table(db, node, in_table, commit=False, row_ct_ref=None, |
120 | 128 |
table_is_esc=False): |
121 | 129 |
''' |
Also available in: Unified diff
db_xml.py: Added ColRef