View Single Post
  #2 (permalink)  
Old 07-16-2007, 07:10 AM
Karpagarajan Karpagarajan is offline
D-Web Analyst
 
Join Date: Mar 2007
Posts: 299
Karpagarajan is on a distinguished road
Default Re: Create connections between your ColdFusion Web sites and databases?

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
__________________
Karpagarajan. R
Necessity is the mother of invention
Reply With Quote