新的ColdFusion 11函数queryExecute的在线文档在这里:
https://wikidocs.adobe.com/wiki/display/coldfusionen/QueryExecute
QueryExecute(sql_str, queryParams, queryOptions);
是否有人为" queryOptions"的所有选项都有文档?这个功能?
列出的唯一选项位于文档中的示例中:
result
datasource
fetchclientinfo
cachename
我只确定"数据源"它是什么。必须有其他像" cachedwithin"," blockFactor",以及可与< cfquery>一起使用的其他选项。
答案 0 :(得分:5)
与cfquery相同:
blockFactor = "block size"
cachedAfter = "date"
cacheID = "ID"
cacheRegion = "region"
cachedWithin = "timespan"
dataSource = "data source name"
dbtype = "query"
debug = "yes|no"
fetchClientInfo = "yes|no"
maxRows = "number"
ormoptions = #orm options structure#
password = "password"
result = "result name"
timeout = "seconds"
username = "user name"
如果您想知道这些操作,请查看cfquery的文档。我假设你要求列表,而不是每个都是什么意思,因为它们已被记录。