Tags · Functions · Objects
Lucee Tag Reference
Choose a tag:

Tag <CFUPDATE>

Updates existing records in data sources.

Body

This tag can't have a body.

Example

	<cfupdate
		[datasource="string"]
		[formfields="string"]
		[password="string"]
		tablename="string"
		[tableowner="string"]
		[tablequalifier="string"]
		[username="string"]>
	
This tag is also supported within cfscript
	<cfscript>
		update
		[datasource="string"]
		[formfields="string"]
		[password="string"]
		tablename="string"
		[tableowner="string"]
		[tablequalifier="string"]
		[username="string"];
	</cfscript>

Attributes

The attributes for this tag are fixed. Except for the following attributes no other attributes are allowed.
Name Type Required Description
datasource string No Name of the data source that contains a table. 
formfields string No A comma-separated list of form fields to update. If this attribute is not specified, all fields
in the form are included in the operation. 
password string No If specified, password overrides the password value specified in the ODBC setup. 
tablename string Yes Name of the table you want to update. 
tableowner string No For data sources that support table ownership, for example, SQL Server, Oracle, and Sybase
SQL Anywhere, use this field to specify the owner of the table. 
tablequalifier string No For data sources that support table qualifiers, use this field to specify the qualifier for the
table. The purpose of table qualifiers varies across drivers. For SQL Server and Oracle, the qualifier
refers to the name of the database that contains the table. For the Intersolv dBase driver, the
qualifier refers to the directory where the DBF files are located. 
username string No If specified, username overrides the username value specified in the ODBC setup.