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.
How to read the empty values from the dbf file in C#. Currently while
Share
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.