在cfscript中的Railo存储过程

时间:2014-01-17 20:16:51

标签: railo cfml

Railo有

<cfscript>
svc = new storedProc();
</cfscript>

Google groups中看起来有一些关于它的讨论。

编辑:

我正在尝试这个:

<cfscript>
response = storedproc(procedure="app.GetErrorCodes",result="response",returncode="yes");
</cfscript>

我得到“找不到匹配功能[STOREDPROC]”

编辑2:

这有效:

<cfstoredproc procedure="app.GetErrorCodes" debug="yes" result="response" returncode="yes" >
</cfstoredproc>

除了我在结果中没有看到查询。

编辑3:

这有效:

<cfscript>
storedproc procedure="app.GetErrorCodes" result="response" returncode="yes";
</cfscript>

除了我在结果中没有看到查询。

等等哦!我想我找到了! https://groups.google.com/forum/#!msg/railo/UUP0WRuLLX4/zpbKkvekDiAJ

最后!呼!那只花了一整天。

1 个答案:

答案 0 :(得分:1)

Railo docs网站显示支持

<cfscript>
  storedproc
  [blockfactor="number"]
  [cachedafter="datetime"]
  [cachedwithin="timeSpan"]
  [cachename="string"]
  [datasource="string"]
  [debug="boolean"]
  [password="string"]
  procedure="string"
  [result="string"]
  [returncode="boolean"]
  [timeout="number"]
  [username="string"] {
  }
</cfscript>