This is what the URL looks like
/admin/conference/index.cfm?action=view_attendees&conf_id=6f1e0d6d-c35e-4ea2-9e24-39e0e02d442d

I reworked the query to use the ID as opposed to the UID and I'm getting
the same error. But again, if I remove cfqueryparam it works.

<cfif structKeyExists(arguments, "conf_id") and
isnumeric(arguments.conf_id)>
and c.id = <cfqueryparam value="#arguments.conf_id#"
CFSQLType="cf_sql_numeric" />
 </cfif>

-- the above gets me the invalid binding error

<cfif structKeyExists(arguments, "conf_id") and
isnumeric(arguments.conf_id)>
 and c.id = #arguments.conf_id#
</cfif>

-- but this works fine



On Fri, Jan 25, 2013 at 1:05 PM, Dave Watts <dwa...@figleaf.com> wrote:

>
> > Also, using this works..
> > c.conferenceUID = '#arguments.conf_id#'
> >
> > So I'm not sure what the problem is with cfqueryparam
>
> I think it's pretty clear - we're not specifying the right parameter
> type. How many characters are in the UUID?
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> http://training.figleaf.com/
>
> Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
> GSA Schedule, and provides the highest caliber vendor-authorized
> instruction at our training centers, online, or onsite.
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354072
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to