| name | description |
| cfdbinfo | Lets you retrieve information about a data source, including details about the database, tables, queries, procedures, foreign keys, indexes, and version information about the database, driver, and JDBC. |
| cfinsert | Inserts records in data sources from data in a ColdFusion form or form Scope. |
| cfobjectcache | Flushes the query cache. |
| cfprocparam | Defines stored procedure parameters. This tag is nested within a cfstoredproc tag. |
| cfprocresult | Associates a query object with a result set returned by a stored procedure. Other ColdFusion tags, such as cfoutput and cftable, use this query object to access the result set. This tag is nested within a cfstoredproc tag. |
| cfquery | Passes queries or SQL statements to a data source. |
| cfqueryparam | Verifies the data type of a query parameter and, for DBMSs that support bind variables, enables ColdFusion to use bind variables in the SQL statement. Bind variable usage enhances performance when executing a cfquery statement multiple times. |
| cfstoredproc | Executes a stored procedure in a server database. It specifies database connection information and identifies the stored procedure. |
| cftransaction | For enterprise database management systems that support transaction processing, instructs the database management system to treat multiple database operations as a single transaction. Provides database commit and rollback processing. See the documentation for your database management system to determine whether it supports SQL transaction processing. |
| cfupdate | Updates records in a data source from data in a ColdFusion form or form Scope. |