ColdFusion Programming/databases

From Wikibooks, open books for an open world
Jump to navigation Jump to search

One of the most powerful original features of ColdFusion was the ability to easily connect to various databases.

Setting up Datasources[edit | edit source]

Almost any database can be used as long as it has a JDBC driver available. There are built in drivers for Access, MS SQL server and MySQL server. Additionally there is a built in ODBC bridge which should only be used if nothing else is available.

Choosing Data Sources within the ColdFusion Administrator will allow you to setup each datasource that you will need.

CFQuery[edit | edit source]

The way to connect to a database is by using CFQUERY.

Example:

<cfquery datasource="postal" name="getdata">
  SELECT *
  FROM zipcodes
</cfquery>

Attributes:

  • Datasource
  • Name
  • DbType

Return Variables:

  • ColumnList
  • RecordCount
  • CurrentRow
  • ExecutionTime

CFInsert[edit | edit source]

CFUpdate[edit | edit source]

Grouping Query Displays[edit | edit source]

Query of Queries[edit | edit source]