If you split the code out as follows, on which line do you see the error:

<cfset var alias = _getAlias() />
<cfset var factory = _getReactorFactory() />
<cfset var query = 0 />
<cfset query = 
createObject("component","reactor.query.query").init(alias,alias,factory)


Actually, it appears var scoping the variable "query" fixed the
problem. I had separated it out before and it was still erring on the
createObject call, but I didn't try varing the query variable.

Unfortunately, it is now throwing another error. This time in
/reactor/core/objectFactory.cfc

The error is:
No such function exists - getconfig.
139:       <cfset ObjectTranslator = CreateObject("Component",
"reactor.core.objectTranslator").init(getConfig(), DbObject, this) />


-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Reactor for ColdFusion Mailing List
[email protected]
Archives at: http://www.mail-archive.com/reactor%40doughughes.net/
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

Reply via email to