Skip to content

Commit 3c2bf2e

Browse files
committed
Updated docs
1 parent 50f548e commit 3c2bf2e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ VBA CSV interface is the most complete, and open source, CSV/TSV VBA parser libr
2424

2525
If you don't know how to get started with VBA-CSV Interface class, visit the [documentation repo](https://ws-garcia.github.io/VBA-CSV-interface/). For code hints, basic and more in-depth use of the library, see [examples](https://ws-garcia.github.io/VBA-CSV-interface/examples/).
2626

27+
Visit the [frequently asked questions section](https://ws-garcia.github.io/VBA-CSV-interface/home/FAQ.html) for the most common questions.
28+
2729
## Contributing
2830

2931
In order to contribute within this project, please see the [guidance for contributing](https://ws-garcia.github.io/VBA-CSV-interface/contributing.html).

docs/home/FAQ.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,6 @@ For example, instead of offering a single way to get things done, the VBA CSV in
6464

6565
Another limitation that has been broken in the most recent versions of the VBA CSV interface is linked to the size of the parsed file. In versions prior to v3, the performance was subject to the size of the file, due to memory usage, even if the user only needed to access the first few records of the CSV file. Thus, importing the first 100 records from a 200 MB file took much longer than importing the same number of records from a 10 MB file. In recent versions the performance is strictly linked to the number of fields and records being processed, since the entire contents of the CSV are NOT loaded into RAM thanks to the [ECPTextStream](https://ws-garcia.github.io/ECPTextStream/) module.
6666

67+
#### Where can I find the documentation for parser options?
68+
69+
All available options reside in the `parseConfig` property of the parser and are fully documented in the [API documentation](https://ws-garcia.github.io/VBA-CSV-interface/api/properties/parseconf.html).

0 commit comments

Comments
 (0)