read a comma-delimited, or some other form of delimitation, into an Dataset using c#.
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Dear All How to read a comma-delimited, or some other form of delimitation from a Text file into a Dataset using c#. I want to import data from the text file into database. Thanx
-
Dear All How to read a comma-delimited, or some other form of delimitation from a Text file into a Dataset using c#. I want to import data from the text file into database. Thanx
You can use the Split() method of the string class to get the individual pieces of data from that text. After that inserting it into database is pretty straight-forward.