if you're sending form fields...

<cfset myInstance.updateTable(argumentcollection=form) />

you can send an array, you can send a struct... you can send any
number of simple variables wrapped up in a single complex var.

On 6/7/07, Chad Gray <[EMAIL PROTECTED]> wrote:
> 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?
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:280388
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