4

新的 ColdFusion 11 函数 queryExecute 的在线文档在这里:

https://wikidocs.adobe.com/wiki/display/coldfusionen/QueryExecute

    QueryExecute(sql_str, queryParams, queryOptions);

是否有人对此功能的“queryOptions”的所有选项有文档?

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

    result
    datasource
    fetchclientinfo
    cachename

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

4

1 回答 1

7

它与 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 的文档。我假设您要的是列表,而不是这些列表中的每一个的含义,因为它们已经记录在案。

于 2014-10-10T11:04:15.927 回答