Part of vmc.contrib.axiom.iaxiom View In Hierarchy
Known implementations: vmc.contrib.axiom.attributes.SQLAttribute
Method | getShortColumnName | |
Method | getColumnName | |
Method | fullyQualifiedName | |
Method | __get__ |
Returns | The fully qualified name of this object as a column within the database,
eg, "main_database.some_table.[this_column]" .
(type: str
) |
Returns | The fully qualfied name of this object as an attribute in Python code,
eg, myproject.mymodule.MyClass.myAttribute . If this attribute
is represented by an actual Python code object, it will be a dot-separated
sequence of Python identifiers; otherwise, it will contain invalid
identifier characters other than '.'.
(type: str
) |
Parameters | row | an item that has this column.
(type: axiom.item.Item
) |
Returns | The value of the column described by this object, for the given row. (type: depends on the underlying type of the column. ) |