How to Read/Write DBF file In C# use IO/Stream (not OLEDB)
-
Hello I want create a file fox (*.dbf) which has 3 fields (ID, NAME, MOBILE). Then I need insert data to this file. Example: 1, Mr Join, 0912555666 2, Ms Angela, 0123666777 ---------------------------------------- You can help me? There are examples as possible. Thank you very much!
-
Hello I want create a file fox (*.dbf) which has 3 fields (ID, NAME, MOBILE). Then I need insert data to this file. Example: 1, Mr Join, 0912555666 2, Ms Angela, 0123666777 ---------------------------------------- You can help me? There are examples as possible. Thank you very much!
No idea what you are asking. Please clarify.
-
Hello I want create a file fox (*.dbf) which has 3 fields (ID, NAME, MOBILE). Then I need insert data to this file. Example: 1, Mr Join, 0912555666 2, Ms Angela, 0123666777 ---------------------------------------- You can help me? There are examples as possible. Thank you very much!
Why DBF, this format is no longer used in any applications that I know of (possible exception is Foxpro). I suggest you look into another database, Access or SQL Express and there are a couple of others out there that will be a better option than DBF. You cannot "write" to a .DBF file using filestream, you have to create a connection to the file, you may be able to use the Jet engine, try connectionstrings.com You could also use XML for small data sets.
Never underestimate the power of human stupidity RAH