I have a function in a CFC that does an update on a database table.

<cffunction name="updateTable" access="public">
        <cfargument name="id" type="numeric" required="yes">
        <cfargument name="Feild1" type="string" required="no">
        <cfargument name="Field2" type="string" required="no">

        <cfquery datasource="#variables.dataSource#">
        UPDATE table SET 
                Field1='#arguments.Field1#',
                Field2='#arguments.Field2#'
        WHERE id = #arguments.id#
        </cfquery>
</cffunction>


I can use <cfinvoke> with cfinvokearguments tags for each field, but that is a 
lot of typing.

What is best way to send the arguments to the function with the least amount of 
typing?  

I suppose is my real question is how do you use cfscript to send the data?


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:280383
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to