Coldfusion queryExecute函数中的queryOptions有哪些选项?

Coldfusion queryExecute函数中的queryOptions有哪些选项?,coldfusion,coldfusion-11,Coldfusion,Coldfusion 11,新ColdFusion 11函数queryExecute的在线文档如下: 是否有人对此函数的“查询选项”的所有选项都有文档记录 文档中的示例中列出了唯一的选项: result datasource fetchclientinfo cachename 我只确定“数据源”及其用途。必须有其他选项,如“cachedwithin”、“blockFactor”,以及其他可与一起使用的选项。它与cfquery相同: blockFactor = "block size" c

新ColdFusion 11函数queryExecute的在线文档如下:

是否有人对此函数的“查询选项”的所有选项都有文档记录

文档中的示例中列出了唯一的选项:

    result
    datasource
    fetchclientinfo
    cachename

我只确定“数据源”及其用途。必须有其他选项,如“cachedwithin”、“blockFactor”,以及其他可与一起使用的选项。

它与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。我想你是在问这个列表,而不是每个列表的意思,因为它们已经被记录在案。

我已经更新了
queryExecute()
文档来实际说明这一点,并链接回
docs.woot-谢谢Adam。希望我没有因为感谢你而违反规则;)哦,是的。我想,这种未经批准的闲聊会让我们两人都受到无人理会的人的严厉谴责。
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"