postgresql 处理空值
我使用 postgresql 作为数据库。并且字段上的条件不为空。当用户将该字段保留为空白并输入其给出的空指针异常时,因为在 postgresql 中对于整数它不会接受接受“”。有关如何处理这种情况的任何想法
I am using postgresql for database. And the condition on the field is not null. When user keeps blank for that field and hit on enter its giving null pointer exception becuase in postgresql for integer it wont accept accept "".Any idea about how to handle this case
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果可以修改 INSERT 语句,则可以使用 COALESCE() 函数自动将 NULL 值替换为您指定的另一个值。
以下是当未设置 $status 变量时自动在状态字段中插入 0(零)的示例:
COALESCE 函数可以接受任意数量的参数并返回它找到的第一个非 NULL 值。当您在确定默认值之前想要尝试“瀑布”值时,这会派上用场。例如:
If you can modify the INSERT statement, you can use the COALESCE() function to automatically replace a NULL value with another value you specify.
Here is an example to automatically insert 0 (zero) in the status field, when the $status variable is not set:
The COALESCE function can take any number of arguments and returns the first non-NULL value it finds. This comes in handy when you have a "waterfall" of values you want to try before settling on the default value. For example:
由于您的字段不接受
NULL
,因此您应该使用实际的整数来设置它。在客户端将空字符串替换为
0
(或其他默认值)。Since your field does not accept
NULL
, you should set it with an actual integer.Replace the empty string with a
0
(or other default value) on the client side.使用 javascript 检查您的表单,如果文本框中出现“”,只需将 0 分配给该值即可。然后将该值作为整数值传递,仅此而已。
Check your form with javascript, and if is coming a "" from the textbox, just assign 0 to that value. Then pass that value as an Integer value and that's all.