将空值读取为空而不是默认值

发布于 2024-09-01 16:02:31 字数 106 浏览 4 评论 0原文

如何在 C# 中从“dbf”文件中读取空值。 目前,在读取 dbf 文件时,文件中的空值会自动转换为默认值。 就像空的小数字段被转换为“0.000”。 有人可以帮助您按原样读取空字段而不是默认值吗?

How to read the empty values from the "dbf" file in C#.
Currently while reading the dbf files, the empty values in the file are automatically getting converted to default values.
Like empty decimal field is converted to "0.000".
Can someone please help in way to read the empty fields as they are and not as default values.

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

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

发布评论

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

评论(3

梦归所梦 2024-09-08 16:02:31

.dbf 文件格式可以追溯到计算的石器时代。它从来没有“空”列值的概念,未分配的字段将获得默认值。直到 FoxPro 才出现对可为空列的支持。我认为你所要求的是不可能的。

The .dbf file format dates back to the stone age of computing. It never had a notion of an "empty" column value, unassigned fields would get a default value. Support for nullable columns didn't come around until FoxPro. I reckon what you ask for isn't possible.

煞人兵器 2024-09-08 16:02:31

您可以将变量(至少是值类型)声明为可空类型

decimal? myDecimal = null;

如果该字段中没有值,则应将其保留为 null 并且不设置为默认值。

语法 T?是 Nullable 的简写,其中 T 是值类型。这两种形式可以互换。

Can you declare your variables (at least the value types) as nullable types:

decimal? myDecimal = null;

Then if there's no value in the field it should be left as null and not set to a default value.

The syntax T? is shorthand for Nullable, where T is a value type. The two forms are interchangeable.

勿忘初心 2024-09-08 16:02:31

decimal 是所谓的 值类型并且它不能为空,这可能就是您获得这些默认值的原因。但是,大多数数据库都有空值的概念 (DbNull< /code>),所以这很可能只是正确读取值的问题。如果您发布一些代码,我们应该能够帮助您。

decimal is a so-called value type and it cannot be null, which is probably why you are getting those default values. However, most databases have a notion of empty values (DbNull), so it would most likely just be a question of reading the value correctly. If you post some code we should be able to help you.

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