I was just wondering if it would at all be possible to edit a notepad file programatically where I have a CTL file with rows of data that get entered into a database.
example:
Load Data
INFILE*
Replace
INTO table <table>
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
(column1,column2,column3)
BEGINDATA
"data1","data1","data1"
"data2","data2","data2"
"data3","data3","data3"
Since I can't really query the textfile(that i know of) is there anyway I could programtacically update the data on this ctl file through vb.net?
Thanks!