如何为 ColdFusion 中的查询参数分配空值?

发布于 2024-10-17 12:25:08 字数 330 浏览 2 评论 0原文

我有一个数据库表,其中的 int 列也可以为空。向列添加 int 没问题,但将其设置回 null 会导致错误。由于 ColdFusion 不支持 null 值,因此我通常将该值作为空字符串传递:

local.myParam = "";

但这会导致错误,因为 "" 不是数字类型。

post.addParam(name="parentId", cfsqltype="CF_SQL_INTEGER", value=arguments.parentId);

我有什么想法可以解决这个限制吗?

I have a database table with an int column that can also be null. Adding an int to the column is fine, but setting it back to null causes an error. Since ColdFusion does not support null values, I usually pass the value as an empty string:

local.myParam = "";

This causes an error however, that "" is not of type numeric.

post.addParam(name="parentId", cfsqltype="CF_SQL_INTEGER", value=arguments.parentId);

Any ideas how I can work around this limitation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑忘罢 2024-10-24 12:25:08

如果您希望将空字符串作为 null 发送,您可以执行以下操作:

post.addParam(... null=len(trim(local.myParam)) ? false : true ...);

addparam > 除了 namecfsqltype 等其他参数之外,还支持 null 参数。将 null 设置为 true 会将给定值作为正确的 null 提供给数据库。为了方便起见,我使用三元条件运算符来内联 true 或 false 值。您可以使用iif() 实现同样的事情,老派。

If you want the empty string to be sent as null, you can do something like this:

post.addParam(... null=len(trim(local.myParam)) ? false : true ...);

Which is to say, <cfqueryparam> and addparam support a null argument in addition to the others like name or cfsqltype. Setting null as true will provide the given value to the database as a proper null. For convenience, I'm using the ternary conditional operator to inline a true or false value. You could achieve the same thing, old-school, by using iif().

你列表最软的妹 2024-10-24 12:25:08

我想你想要这个...

null=yesNoFormat(NOT len(trim(local.myParam)))

I think you want this...

null=yesNoFormat(NOT len(trim(local.myParam)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文