Part of vmc.contrib.axiom.attributes View In Hierarchy
Method | __init__ | Undocumented |
Method | reprFor | Undocumented |
Method | __get__ | |
Method | prepareInsert | Override this method to do something to an item to prepare for its |
Method | infilter | used to convert a Python value to something that lives in the database; |
Method | outfilter | used to convert an SQL value to something that lives in memory; so |
Inherited from SQLAttribute (via integer):
Method | computeDefault | Undocumented |
Method | getShortColumnName | |
Method | getColumnName | |
Method | coercer | must return a value equivalent to the data being passed in for it to be |
Method | requiredSlots | Undocumented |
Method | fullyQualifiedName | |
Method | __repr__ | Undocumented |
Method | type | Undocumented |
Method | loaded | Undocumented |
Method | _convertPyval | Convert a Python value to a value suitable for inserting into the database. |
Method | __set__ | Undocumented |
Inherited from Comparable (via integer, SQLAttribute):
Method | compare | Override this in a subclass. |
Inherited from _ContainableMixin (via integer, SQLAttribute, Comparable):
Method | oneOf | Choose items whose attributes are in a fixed set. |
Method | notOneOf | Undocumented |
Inherited from _ComparisonOperatorMuxer (via integer, SQLAttribute, Comparable):
Method | __eq__ | Undocumented |
Method | __ne__ | Undocumented |
Method | __gt__ | Undocumented |
Method | __lt__ | Undocumented |
Method | __ge__ | Undocumented |
Method | __le__ | Undocumented |
Inherited from _MatchingOperationMuxer (via integer, SQLAttribute, Comparable):
Method | _like | Undocumented |
Method | like | Undocumented |
Method | notLike | Undocumented |
Method | startswith | Undocumented |
Method | endswith | Undocumented |
Inherited from _OrderingMixin (via integer, SQLAttribute, Comparable):
Method | _asc | Undocumented |
Method | _desc | Undocumented |
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. ) |