Variable VALUE is undefined.

18 views
Skip to first unread message

Marc

unread,
Jan 6, 2014, 3:43:51 PM1/6/14
to transf...@googlegroups.com

Hello,


I have an applicartion I made using FW/1 and Transfer version 1.1 Release Candidate 2. I run it using ColdFusion 9,0,2

If I do a formsubmit, I get an error:

Exception in onRequest

The action admin.main failed.

Variable VALUE is undefined.


The merror occurs at \transfer\com\sql\SQLValue.cfc:91

I get this error when I try to update a record in table 'webtexts'. The record does exist. in the stacktrace The app tries to retrieve the record:

<cfset result=getTransfer().get(arguments.baseClass,"#arguments.id#")>

and then update and save it. But before it gets that far, the error is thrown.

After Transfer retrieves the record the error is thrown. So I dump some data in the corresponding file (SQLValue.cfc:91) in a try/catch block and I see
that the query is retrieved, that the property to get the value for is "string" and  the column being retrieved is "IPRestrict". This column does indeed have no value for this record (a NULL value in the database and "" in the retrieved query).

The corresponding config code for this table in transfer.xml is:

            <!-- WEBTEXT-->
            <object name="webtext" table="webtext">
                <id name="id" type="numeric"/>
                <property name="label" type="string" column="label" nullable="false" />
                <property name="content" type="string" column="content" nullable="false" />
                <property name="active" type="boolean" column="active" nullable="false" />
                <property name="IPRestrict" type="string" column="IPRestrict" nullable="true"/>
                <manytoone name="language">
                    <link to="text.language" column="FK_language" />
                </manytoone>
                <manytoone name="textkey" lazy="true">
                    <link to="text.textkey" column="FK_textKey" />
                </manytoone>
            </object>

Notice column "IPRestrict" nullable="true". Does this somehow cause the error: Do I have to add a nullvalue="" attribute inu this line to prevent the error?

Can someone help me fix this?
 
Thanks,
Marc

Below is the full stacktrace:

=========================================================

Exception in onRequest

The action admin.main failed.

Variable VALUE is undefined.

(Expression)

Exception - struct
Detail [empty string]
ErrNumber 0
Message Variable VALUE is undefined.
StackTrace coldfusion.runtime.UndefinedVariableException: Variable VALUE is undefined. at coldfusion.runtime.CfJspPage._get(CfJspPage.java:377) at coldfusion.runtime.CfJspPage._get(CfJspPage.java:339) at coldfusion.runtime.CfJspPage._autoscalarize(CfJspPage.java:1447) at cfSQLValue2ecfc1848866975$funcGETPROPERTYCOLUMNVALUE.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\sql\SQLValue.cfc:91) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:517) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:496) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:355) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2301) at cfSQLManager2ecfc60848923$funcGETPROPERTYCOLUMNVALUE.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\sql\SQLManager.cfc:175) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:491) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:337) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2360) at cfTransferPopulator2ecfc2061901676$funcPOPULATEPROPERTYMEMENTO.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\TransferPopulator.cfc:409) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2582) at cfTransferPopulator2ecfc2061901676$funcBUILDMEMENTO.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\TransferPopulator.cfc:308) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2582) at cfTransferPopulator2ecfc2061901676$funcPOPULATE.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\TransferPopulator.cfc:53) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:491) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:337) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2360) at cfDynamicManager2ecfc565656838$funcPOPULATE.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\DynamicManager.cfc:72) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:491) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:337) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2360) at cfTransfer2ecfc935282521$funcGET.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\Transfer.cfc:120) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:491) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:337) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2360) at cfBaseGateway2ecfc2055610929$funcGET.runFunction(G:\www\marcbakker\MVC\marcbakker\com\GateWays\BaseGateway.cfc:15) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2582) at cfWebtextGateway2ecfc2056431018$funcEDITWEBTEXT.runFunction(G:\www\marcbakker\MVC\marcbakker\com\GateWays\WebtextGateway.cfc:61) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:491) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:337) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2360) at cfwebTextService2ecfc1899824243$funcEDIT.runFunction(G:\www\marcbakker\MVC\marcbakker\com\services\webTextService.cfc:24) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:491) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:337) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2360) at cfadmin2ecfc77459844$funcUPDATEWEBTEXT.runFunction(G:\www\marcbakker\MVC\marcbakker\com\controllers\admin.cfc:251) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2582) at cfadmin2ecfc77459844$funcMAIN.runFunction(G:\www\marcbakker\MVC\marcbakker\com\controllers\admin.cfc:71) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:517) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:496) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:355) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2301) at coldfusion.tagext.lang.InvokeTag.doEndTag(InvokeTag.java:389) at cfframework2ecfc830028689$funcDOCONTROLLER.runFunction(G:\www\marcbakker\wwwroot\org\corfield\framework.cfc:1230) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2582) at cfframework2ecfc830028689$funcONREQUEST.runFunction(G:\www\marcbakker\wwwroot\org\corfield\framework.cfc:477) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:491) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:337) at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:88) at coldfusion.runtime.AppEventInvoker.onRequest(AppEventInvoker.java:280) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:356) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:94) at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62) at coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:126) at coldfusion.CfmServlet.service(CfmServlet.java:200) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at jrun.servlet.FilterChain.service(FilterChain.java:101) at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286) at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543) at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203) at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428) at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
TagContext
Exception - array
1
Exception - struct
COLUMN 0
ID ??
LINE 91
RAW_TRACE at cfSQLValue2ecfc1848866975$funcGETPROPERTYCOLUMNVALUE.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\sql\SQLValue.cfc:91)
TEMPLATE G:\www\marcbakker\frameworks\marcbakker\transfer\com\sql\SQLValue.cfc
TYPE CFML
2
Exception - struct
COLUMN 0
ID CF_TEMPLATEPROXY
LINE 175
RAW_TRACE at cfSQLManager2ecfc60848923$funcGETPROPERTYCOLUMNVALUE.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\sql\SQLManager.cfc:175)
TEMPLATE G:\www\marcbakker\frameworks\marcbakker\transfer\com\sql\SQLManager.cfc
TYPE CFML
3
Exception - struct
COLUMN 0
ID CF_TEMPLATEPROXY
LINE 409
RAW_TRACE at cfTransferPopulator2ecfc2061901676$funcPOPULATEPROPERTYMEMENTO.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\TransferPopulator.cfc:409)
TEMPLATE G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\TransferPopulator.cfc
TYPE CFML
4
Exception - struct
COLUMN 0
ID CF_UDFMETHOD
LINE 308
RAW_TRACE at cfTransferPopulator2ecfc2061901676$funcBUILDMEMENTO.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\TransferPopulator.cfc:308)
TEMPLATE G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\TransferPopulator.cfc
TYPE CFML
5
Exception - struct
COLUMN 0
ID CF_UDFMETHOD
LINE 53
RAW_TRACE at cfTransferPopulator2ecfc2061901676$funcPOPULATE.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\TransferPopulator.cfc:53)
TEMPLATE G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\TransferPopulator.cfc
TYPE CFML
6
Exception - struct
COLUMN 0
ID CF_TEMPLATEPROXY
LINE 72
RAW_TRACE at cfDynamicManager2ecfc565656838$funcPOPULATE.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\DynamicManager.cfc:72)
TEMPLATE G:\www\marcbakker\frameworks\marcbakker\transfer\com\dynamic\DynamicManager.cfc
TYPE CFML
7
Exception - struct
COLUMN 0
ID CF_TEMPLATEPROXY
LINE 120
RAW_TRACE at cfTransfer2ecfc935282521$funcGET.runFunction(G:\www\marcbakker\frameworks\marcbakker\transfer\com\Transfer.cfc:120)
TEMPLATE G:\www\marcbakker\frameworks\marcbakker\transfer\com\Transfer.cfc
TYPE CFML
8
Exception - struct
COLUMN 0
ID CF_TEMPLATEPROXY
LINE 15
RAW_TRACE at cfBaseGateway2ecfc2055610929$funcGET.runFunction(G:\www\marcbakker\MVC\marcbakker\com\GateWays\BaseGateway.cfc:15)
TEMPLATE G:\www\marcbakker\MVC\marcbakker\com\GateWays\BaseGateway.cfc
TYPE CFML
9
Exception - struct
COLUMN 0
ID CF_UDFMETHOD
LINE 61
RAW_TRACE at cfWebtextGateway2ecfc2056431018$funcEDITWEBTEXT.runFunction(G:\www\marcbakker\MVC\marcbakker\com\GateWays\WebtextGateway.cfc:61)
TEMPLATE G:\www\marcbakker\MVC\marcbakker\com\GateWays\WebtextGateway.cfc
TYPE CFML
10
Exception - struct
COLUMN 0
ID CF_TEMPLATEPROXY
LINE 24
RAW_TRACE at cfwebTextService2ecfc1899824243$funcEDIT.runFunction(G:\www\marcbakker\MVC\marcbakker\com\services\webTextService.cfc:24)
TEMPLATE G:\www\marcbakker\MVC\marcbakker\com\services\webTextService.cfc
TYPE CFML
11
Exception - struct
COLUMN 0
ID CF_TEMPLATEPROXY
LINE 251
RAW_TRACE at cfadmin2ecfc77459844$funcUPDATEWEBTEXT.runFunction(G:\www\marcbakker\MVC\marcbakker\com\controllers\admin.cfc:251)
TEMPLATE G:\www\marcbakker\MVC\marcbakker\com\controllers\admin.cfc
TYPE CFML
12
Exception - struct
COLUMN 0
ID CF_UDFMETHOD
LINE 71
RAW_TRACE at cfadmin2ecfc77459844$funcMAIN.runFunction(G:\www\marcbakker\MVC\marcbakker\com\controllers\admin.cfc:71)
TEMPLATE G:\www\marcbakker\MVC\marcbakker\com\controllers\admin.cfc
TYPE CFML
13
Exception - struct
COLUMN 0
ID CFINVOKE
LINE 1230
RAW_TRACE at cfframework2ecfc830028689$funcDOCONTROLLER.runFunction(G:\www\marcbakker\wwwroot\org\corfield\framework.cfc:1230)
TEMPLATE G:\www\marcbakker\wwwroot\org\corfield\framework.cfc
TYPE CFML
14
Exception - struct
COLUMN 0
ID CF_UDFMETHOD
LINE 477
RAW_TRACE at cfframework2ecfc830028689$funcONREQUEST.runFunction(G:\www\marcbakker\wwwroot\org\corfield\framework.cfc:477)
TEMPLATE G:\www\marcbakker\wwwroot\org\corfield\framework.cfc
TYPE CFML
Type Expression
name VALUE
=========================================================


Marc

unread,
Jan 6, 2014, 3:50:19 PM1/6/14
to transf...@googlegroups.com
Ok I made a quick fix, not sure if it causes other problems but it works:

since CF complains about value being undefined, just before where value is being returned in /transfer/com/sql/SQLValue.cfc I add
value = Iif(IsDefined("value"),"value","''");

So whenever a value in the column being retrieved is NULL / "" (in the retrieved query), I assign "" to the columnvalue. Probably overwriting the assigned nullvalue in Transfer.xml but I don't use that anyway.

Marc
Message has been deleted

Jared Rypka-Hauer

unread,
Mar 13, 2014, 8:55:04 PM3/13/14
to transf...@googlegroups.com
Hey Marc,

It’s been 2.5 months since you asked for help… I see you got your issue resolved in a temporary way…

Has this been working for you? I’m not sure anyone saw your email, so I’m just checking in with you…

Thanks,
Jared

On Jan 6, 2014, at 3:00 PM, Marc <marc.at...@gmail.com> wrote:



On Monday, January 6, 2014 9:43:51 PM UTC+1, Marc wrote:

Hello,


I have an applicartion I made using FW/1 and Transfer version 1.1 Release Candidate 2. I run it using ColdFusion 9,0,2

If I do a formsubmit, I get an error:

Exception in onRequest

The action admin.main failed.

Variable VALUE is undefined.

...
Reply all
Reply to author
Forward
0 new messages