Patrick
Member since Aug 3, 2012
- Profile: /members/10173-patrick.htm
- Comments: 2
Recent Blog Comments By Patrick
-
Learning ColdFusion 9: From SQL To ORM - A Conceptual Shift In Relationships
Posted on Aug 3, 2012 at 6:57 PM
I just figured it out. Added to contact.cfc public any function getContactInformation() { if(isnull(variables.modifier)) { contactinfo = new ContactInformation(); contactinfo.init(); return contactinfo; } else { return variables.contactInformation; } } On another note. After ad... read more »
-
Learning ColdFusion 9: From SQL To ORM - A Conceptual Shift In Relationships
Posted on Aug 3, 2012 at 6:13 PM
Hi Ben, Great post. This helped me a lot figuring out many-to-one relationships. This example is exactly what I was looking for. This by far is the most common table relationship in a database - where userids are practically on every row of record in a database as a modifier or creator - b... read more »