6

我是 ColdFusion 的新手,我在 CFQuery 中编写了一段 Postgres 代码:

<cffunction name="insertToReport" access="private" returntype="struct" output="false" >

  <cfset var xyz = structNew() >
  <cfset xyz.code = "">
      <cfquery name="querysampleresult" datasource="abc">
            DO            
            $BODY$
                DECLARE resultValue int;
            BEGIN
               resultValue = 1;
               SELECT resultValue INTO resultValue ;    
            END;
            $BODY$
      </cfquery>

            <cfset xyz.code = querysampleresult.resultValue  >

           <cfreturn xyz >
</cffunction>

我的问题是我无法访问resultValueCFQuery 标记之外的变量,即它抛出异常:

Element RESULTVALUE is undefined in querysampleresult

这发生在函数末尾的 CFSet 语句中:

<cfset xyz.code = querysampleresult.resultValue  >

我不知道如何resultValue在结构中设置变量,我一定会从这里返回一个结构到调用环境。请帮助我,提前致谢。

4

2 回答 2

2

将另一个 select 语句添加到选择结果值的查询中。现在您正在选择 INTO 一个不返回查询的表。

<cffunction name="insertToReport" access="private" returntype="struct" output="false" >
<cfargument name="rptDataObj" required="yes" type="com.certain.register123.data.reportData" hint="The affected report.">
<cfargument name="maxColumns" type="numeric" required="false" default="10" hint="The maximum number of active columns that should be saved to the report. " ><!--- As of REG-559 20060215, the default was 10 --->
<cfargument name="dsn" type="string" required="false" default="#application.portals.data[request.applicationName].dsn#" >
<cfset var uiCustomColumn = queryNew("") >
<cfset var strSaveError = structNew() >
<cfset strSaveError.code = 0 >
<cfset strSaveError.message = "">
<cfset strSaveError.udcId = "">


<cfquery name="uiCustomColumn" datasource="#arguments.dsn#">
DO            
$BODY$
    DECLARE resultValue int;
    DECLARE nextId bigint;
    DECLARE maxColumns bigint;
    DECLARE udcReportId bigint; /*Have to use this value more than once, so declare it to reduce number of parameters*/
    DECLARE udcOrder int;  /*Have to use this value more than once, so declare it to reduce number of parameters*/

BEGIN
    udcReportId = #arguments.rptDataObj.getId()# ;
    maxColumns = #arguments.maxColumns# ;

    IF (( select count( udc_id ) from user_defined_column WHERE udc_frn_rpt_id = udcReportId AND udc_is_active = true ) >= maxColumns) THEN
        BEGIN
            resultValue = 1; /*There isn't an available slot for this column */
        END;
        ELSE
        BEGIN

            nextId = (SELECT coalesce( MAX(udc_id), 0 ) FROM user_defined_column ) + 1 ;
            udcOrder = (SELECT coalesce( MAX(udc_order), 0 ) FROM user_defined_column WHERE udc_frn_rpt_id = udcReportId AND udc_is_active = true ) + 1 ;

            INSERT INTO user_defined_column(
                udc_id
                ,udc_frn_rpt_id
                ,udc_label
                ,udc_data
                ,udc_type
                ,udc_order
                ,udc_is_active
                ,udc_date_created
                ,udc_date_modified
            )
            VALUES(
                nextId
                ,udcReportId
                ,'hi'
                ,'hi'
                ,12
                ,udcOrder
                ,true
                ,now()
                ,now()
            );


            resultValue = 0;
        END ;
    END IF;
    SELECT resultValue, nextId INTO resultValue  /*Set a success result */
          , nextId;

    SELECT resultValue;

END;
$BODY$
</cfquery>

<cfset strSaveError.code = uiCustomColumn.resultValue  >
<cfset strSaveError.udcId = uiCustomColumn.nextId  >

<cfreturn strSaveError >

于 2013-01-28T13:50:42.017 回答
1

匿名代码块 ( DO) 总是返回void。您需要使用一个函数来返回任何其他内容:

create function f()
returns integer as $body$
declare 
    resultValue integer;
begin
    resultValue := 1;
    return resultValue;
end;
$body$
language plpgsql

创建函数后,您可以在查询中使用它:

select f() as resultValue;
于 2013-01-29T08:45:25.330 回答