Skip to content

Commit c1a2de0

Browse files
authored
Update README.md
1 parent 5bebdd2 commit c1a2de0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Although many solutions has been developed for work with CSV files into VBA, inc
1515
### Advantages
1616
* CSVfileManager can work with like RFC4180 CSV standard (there are few differences).
1717
* User have the option to import only certain range of records from given CSV file.
18-
* Writes and reads files at relatively high speed (tested against the available solutions).
18+
* Writes and reads files at high speed.
1919
## Philosophy
2020
The VBA CSVfileManager class module is designed for gain advantage from the well structured CSV files, this means, there isn't automatic syntax check, given the user decide how the class will works. This can be seen as a weakness, but the class get a speed-up on writing and reading procedures at time the user controls how the file is interpreted, keeping in mind that, in fact, VBA is a language with slow code execution speed.
2121
Under this idealization it's easy to develop a solution that implicity complies with the RFC4180 standart for user specified CSV document format. In order to achieve this, the user must to follow the rules specified below.
@@ -51,9 +51,9 @@ Set CSVmanager = Nothing
5151
```
5252
Set the char to encapsulate, coerce, fields
5353
```vbscript
54-
CSVmanager.CoerceType = NotCoerce
55-
CSVmanager.CoerceType = Apostrophe
56-
CSVmanager.CoerceType = DoubleQuotes
54+
CSVmanager.EscapeChar = NotEscape
55+
CSVmanager.EscapeChar = Apostrophe
56+
CSVmanager.EscapeChar = DoubleQuotes
5757
```
5858
Set fields and records delimiters
5959
```vbscript

0 commit comments

Comments
 (0)