Application.cfc
<cfset this.name = "AG"/> |
Artists.cfc
<cfcomponent persistent="true" table="Artists"> |
art.cfc
<cfcomponent persistent="true" table="Art"> <cfproperty name="artid" generator="identity" fieldtype="id"> <cfproperty name="artname" ormtype="string" length="50"> <cfproperty name="price" ormtype="double"> <cfproperty name="largeimage" ormtype="string" length="30"> <cfproperty name="mediaid" ormtype="integer" length="10"> <cfproperty name="issold" ormtype="boolean" dbdefault=1> <cfproperty name="artist" fkcolumn="artistid" fieldtype="many-to-one" cfc="CArtists"> </cfcomponent> |