Skip to main content
August 12, 2008
Question

[Macromedia][SQLServer JDBC Driver]Invalid parameter binding(s).

  • August 12, 2008
  • 1 reply
  • 3236 views
I'm posting values to a ColdFusion component from a form via an action page
action page code: http://cfm.pastebin.com/d573539dd

When the function receives the data it throws one of two errors: If I set a type for group_id (as int) it throws an error saying that group_id is not of type int. (I've since discovered that ColdFusion passes almost all form values as strings). If I remove the type from the CFArgument I get [Macromedia][SQLServer JDBC Driver]Invalid parameter binding(s).

I need to get an answer and move past this.. what am I missing?

http://cfm.pastebin.com/m5279dcb4

This topic has been closed for replies.

1 reply

Inspiring
August 12, 2008
You might try using the Int() function to explicitly covert group_id to an integer when passing it to your function.