I'm testing out our news release posting application with our new CF MX 7
server and I'm getting an error posting a news release:

Invalid data Testing. for CFSQLTYPE CF_SQL_VARBINARY.

The error occurred in
E:\Inetpub\wwwroot\news\admin\form_add_featureActi on.cfm: line 11

9 : <cfelse>
10 :
11 : <cfinsert datasource="newsInfo" tablename="features" dbtype="ODBC">
12 : <cflocation url="index.cfm?pageID=_list_features.htm" addtoken="No">
13 :


If I post the same news release on our CF 5.1 server it works without issue.

Is my datatype set correctly? Is the dbtype causing the problem? I'm
attaching the code from the action page I use for this posting application.

Thanks in advance for any assistance!

-Trevor

Action page code:

<cfparam name="form.active" type="boolean" default="0">

<cfif isDefined('form.featureID')>


<cfupdate datasource="newsInfo" tablename="features" dbtype="ODBC"

formfields="type,active,releaseMonth,releaseDay,re leaseYear,eventTypeID,eventSub
TypeID,title,story,homepage,gender">
<cflocation url="index.cfm?pageID=_list_features.htm" addtoken="No">
<cfelse>

<cfinsert datasource="newsInfo" tablename="features" dbtype="ODBC">
<cflocation url="index.cfm?pageID=_list_features.htm" addtoken="No">

</cfif>