home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Examples / docs / pubdocs / 3-under1.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  1.4 KB  |  25 lines

  1. <CFSET Title = "Under the Hood, Pt. 1">
  2. <CFINCLUDE TEMPLATE="_header.cfm">
  3.  
  4. <h3>Under the Hood, Pt. I</h3>
  5. <P>If you just want to poke around with the example application and see what a 
  6.   content publishing system looks like, we've covered about everything you need 
  7.   to know. Keep reading if you want to understand what's happening behind the 
  8.   scenes. </P>
  9. <P><IMG SRC="schema.gif" WIDTH=516 HEIGHT=217 BORDER=0 ALT="Database Schema"></P>
  10. <P>In the CFexamples datasource, there are eight tables that begin with Pub. These 
  11.   are the tables that are associated with this example application. (For clarity, 
  12.   PubUsers and PubClassDefinitions are not shown in the graphic above.)</P>
  13. <P>Every object has an entry in <B>PubObjects</B>, which (among other things) 
  14.   specifies which of the classes in <B>PubDataClasses</B> the object belongs to.</P>
  15. <P>Each object has one related record in <B>PubContent</B> for <I>each</I> piece 
  16.   of content in that object. All of the PubContent records relate to one of the 
  17.   PubContentTypes (<I>one</I> PubContentTypes record to <I>many</I> PubContent 
  18.   records).</P>
  19. <P>There is one record in <B>PubInstances</B> for each instance of each object, 
  20.   and every page that has instances scheduled on it has a record in <B>PubPages</B>; 
  21.   each instance in PubInstances points to one of the pages in PubPages.</P>
  22.  
  23. <CFSET HREF = "4-under2.cfm">
  24. <CFSET Link = "Under the Hood, Pt. 2">
  25. <CFINCLUDE TEMPLATE="_footer.cfm">