Subscribe to DataMgr |
Visit this group |
Field type conversions:
<field ColumnName="MyField">
<relation type="has" field="Email" />
</field>
<cfset sRelation = StructNew()>
<cfset sRelation.type = "has">
<cfset sRelation.field= "Email">
<cfset Application.DataMgr.setColumn(tablename="MyTable",ColumnName="MyField",Relation=sRelation)>
The "hasnot" relation type is just like the "has" relation type except that it returns the opposite boolean value.