我是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>我的问题是我无法访问CFQuery标记之外的变量resultValue,即它抛出了异常:
Element RESULTVALUE is undefined in querysampleresult这发生在函数末尾的CFSet语句中:
<cfset xyz.code = querysampleresult.resultValue >我不知道如何在结构中设置变量resultValue,而且我必须从这里向调用环境返回一个结构。请在这方面帮助我,提前谢谢。
发布于 2013-01-29 16:45:25
匿名代码块(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-28 21:50:42
将另一个select语句添加到选择结果值的查询中。现在,您正在选择一个表,该表不返回查询。
<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 >
https://stackoverflow.com/questions/14561620
复制相似问题