
Adobe
The strength of Adobe ColdFusion lies in its ability to connect to many types of data sources and display that information dynamically on web pages. One strong application is exemplified by selling products on a website. If you were to use static web pages instead of ColdFusion, you'd have to create a new web page for every product you'd like to sell. Usually, that data already resides in a data source of some kind. Using CFML, you can query product information in your database quickly and easily, and dynamically create a detailed product web page based on your customer's request.
In order to connect to a database, retrieve data, and display it on a web page, you must do the following:
Write a ColdFusion page which contains the following two tags:
cfquery tag, which contains the SQL SELECT statement to retrieve the data from the databasecfoutput tag, which displays the query output on the web pageThis article explains how to display database data on a web page.
To complete this tutorial you will need to install the following software: