这让我非常困惑,因为我已经做了一百次了,但现在它让我失败了。
我正在使用CF参数进行基本的查询更新,表的主键传入了一个空值,导致了严重的失败。
即使我在#form.id placeholder#
中输入硬编码号码,我也会得到以下信息:
CFSQLTYPE CF_SQL_NUMERIC的数据"无效。
这是我的代码库
<cfquery name="updateIdea" datasource="#request.db#">
UPDATE freshideas
SET subject = <cfqueryparam cfsqltype="cf_sql_varchar" value="#form.subject#" null="no" />,
content = <cfqueryparam cfsqltype="cf_sql_varchar" value="#form.content_text#" />,
postmonth = <cfqueryparam cfsqltype="cf_sql_numeric" value="#form.postmonth#" />,
postyear = <cfqueryparam cfsqltype="cf_sql_numeric" value="#form.postyear#" />,
imglink = <cfqueryparam cfsqltype="cf_sql_varchar" value="#image#" />,
oindex = <cfqueryparam cfsqltype="cf_sql_integer" value="#form.oindex#" null="no" maxlength="3" />
WHERE id = <cfqueryparam cfsqltype="cf_sql_integer" value="#form.id#" null="no" />
</cfquery>
插入操作正常,列ID为auto_increment int(5)。
这是一个很长的机会,但如果您最近对表进行了更改,则可能会在缓存模式时遇到问题。尝试重新启动CF服务器,甚至只是在查询中添加一些空间。这是一篇包含更多信息的帖子。
http://www.coldfusionmuse.com/index.cfm/2005/4/29/dbschemaChange
我在当前的代码库中得到了很多。在添加cfqueryparams时,开发人员假定这些值,有时预期的整数是空字符串。
如果空字符串/null合适,请使用http://www.carehart.org/blog/client/index.cfm/2007/3/5/cfqueryparam_null
在我的情况下,整数应该是一个整数,所以如何设置该变量通常是一个问题,就像返回0条记录的查询一样。