end of line

0

-00Eric Clapton

I want to write importing CSV file into a access table. How can I deal with
the end of line? PLease advise. Thanks.
 
V

Van T. Dinh

Are you reading one line of the CSV file at a time or using TransferText
Method?

TransferText would be much faster and handle EOL automatically (used as the
Record separator).
 
V

Van T. Dinh

Is the EOF signifies the end of the Record?

Is there any reason you are not using TransferText? (which is a lot easier
and much more efficient than reading and processing one line at a time)
 
0

-00Eric Clapton

Yes, EOF signifies the end of record. The reason I am using coding instead
of transfer text because my importing process is complicated. It's not just
a simple field to field import. Is there a way to detect the end of line in
CSV, if I do it this way?
 
Top