dbf file operations in C# .net
I need to create a dbf file which has the table structure of an existing dbf and insert data to it. Also I need to specify the NAME for it which i usually do in excel by insert->Name. Which is the best and easy way for it. I have tried using OLEDB already. But I need sugge开发者_如何学JAVAstions for the best option.
Have you tried:
System.IO.File.Copy(sourceFileName, destFileName);
Followed by opening the new file and truncating the data leaving the table structure?
精彩评论