Skip to main content
Inspiring
October 17, 2008
Question

CF Function Help

  • October 17, 2008
  • 2 replies
  • 293 views
I am testing a cfc that has few cf functions in it...I need to display what I am passing and their values the to the attached function...Means that I want to test the function standalone...
How will I do that?
I also like to see what I am passing to the <cfquery>?
<cfset MyCSV.add(ccfLevel,Role)>
    This topic has been closed for replies.

    2 replies

    emmim44Author
    Inspiring
    October 20, 2008
    Thank you Dan...Sometimes your answers are upclose ...not this time.
    Inspiring
    October 18, 2008
    For testing,
    <cfdump var="#arguments#">
    let's you see your arguments.

    To see what you pass to your query, give it a result attribute and cfdump that variable after you run the query.

    Once you've done your testing, dump the cfdumps.