“Unable to invoke CFC – [Macromedia][SQLServer JDBC Driver][SQLServer]The multi-part identifier “yourvariable” could not be bound.”
Your not putting pound signs around a variable name
SET @newOtherID = arguments.newUserID;
SET @newOtherID = #arguments.newUserID#;
faultString “Unable to invoke CFC – [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near ‘yourfirstfewcharactersofaguid’.
Your not putting your GUID in quotes
SET @userguid = #arguments.newUserID#;
SET @userguid = '#arguments.newUserID#';
Add A Comment