CFML Quick Reference
7
cfinsert
<cfinsert dataSource = "ds_name"
dbType = "type"
dbServer = "dbms"
dbName = "database name"
tableName = "tbl_name"
connectString = "connection string"
tableOwner = "owner"
tableQualifier = "tbl_qualifier"
username = "username"
password = "password"
provider = "COMProvider"
providerDSN = "datasource"
formFields = "formfield1, formfield2, ...">
cfldap
<cfldap server = "server_name"
port = "port_number"
username = "name"
password = "password"
action = "action"
name = "name"
timeout = "seconds"
maxRows = "number"
start = "distinguished_name"
scope = "scope"
attributes = "attribute, attribute"
filter = "filter"
filterFile = "<file_name>,<stanza_name>"
sort = "attribute[, attribute]..."
sortControl = "nocase" and/or "desc" or "asc"
dn = "distinguished_name"
startRow = "row_number"
modifyType = "REPLACE" or "ADD" or "delete"
rebind = "Yes" or "No"
referral = "number_of_allowed_hops"
secure = "multi_field_security_string"
separator = "separator_character"
delimiter = "delimiter_character">
cflocation
<cflocation url = "url" addToken = "Yes" or "No">
cflock
<cflock timeout = "timeout in seconds "
scope = "Application" or "Server" or "Session"
name = "lockname"
throwOnTimeout = "Yes" or "No"
type = "readOnly/Exclusive ">
<!--- CFML to be synchronized --->
</cflock>
cflog
<cflog text = "text"
log = "log type"
file = "filename"
type = "message type"
thread = "thread ID yes or no"
date = "date yes or no"
time = "time yes or no"
application = "application name yes or no">
cfloop
<cfloop index = "parameter_name"
from = "beginning_value"
to = "ending_value"
step = "increment">
...
HTML or CFML code to execute
...
</cfloop>
<cfloop condition = "expression">
<cfloop query = "query_name"
startRow = "row_num"
endRow = "row_num">
<cfloop index = "index_name"
list = "list_items"
delimiterS = "item_delimiter">
</cfloop>
Содержание COLDFUSION 5-CFML
Страница 2: ......
Страница 36: ...32 CFML Quick Reference...