Database
ceres.txt
Associated article: Integrating Web Pages with Databases
Tags: Database
Published source code accompanying the article by David Cox in which he a presents some unique approaches in integrating a database with web sites. Also see CERES.ZIP.
Integrating Web Pages with Databases
by David Cox
Example 1:
<CFQUERY NAME="Catalog" DATASOURCE="ProductCatalog">
SELECT Name, Size, Price FROM Product;
</CFQUERY>
<CFOUTPUT QUERY="Catalog">
#Description#, #Size#, #Price#<...


