Hi,
Coldfusion is the server side scripting langauge. It can be connected with any type of databases. You can connect the Coldfusion server script to database, you need to create the related database's data resource in Codfusion admin control. After that you can link the data source to your coldfusion server script like given in the below example.
<CFQUERY NAME=”insert_data” DATASOURCE=”test_source”>
INSERT INTO name_table (NAME, TELEPHONE)
VALUES
(‘Shannon’, 555-1212)
</CFQUERY>
Hope you can get the details now.
thanks
