You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/home/getting_started.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ ENC = CSVix.FileEncoding
97
97
98
98
>📝**Note**
99
99
>{: .text-grey-lt-000 .bg-green-000 }
100
-
>Since the v2.0.0 of the `CSVinterface` we adopted the variant data Type array for internals data storage. Is well-known that this data Type has the worst performance in the VBA universe, but we desire bring to user the possibility to work with jagged arrays and let the class pay the cost in performance by that choice.
100
+
>Since the v2.0.0 of the `CSVinterface`class we adopted the variant data Type array for internals data storage. Is well-known that this data Type has the worst performance in the VBA universe, but we desire bring to user the possibility to work with jagged arrays and let the class pay the cost in performance by that choice.
101
101
>
102
102
>However, if you need more data processing performance and not want support to jagged arrays, you can download [this version](https://github.com/ws-garcia/VBA-CSV-interface/releases/download/1.1.6/VBA-CSV-interface-1.1.6.zip) of the `CSVinterface` class.
103
103
{: .text-grey-dk-300 .bg-grey-lt-000 }
@@ -155,12 +155,12 @@ First three of files have special chars (line breaks, commas, double quotes) int
155
155
156
156
>📝**Note**
157
157
>{: .text-grey-lt-000 .bg-green-000 }
158
-
>The above table shows the benchmark results, in seconds, for the currently tested procedures. Some projects were excluded from the benchmark due they do not handle those CSV's compliant with the RFC-4180 specs. The 2nd value, showed in some cells having two values, is obtained when setting `QuotingMode = QuotationMode.All`.
158
+
>The above table shows the benchmark results, in seconds, for the currently tested procedures. The 2nd value, showed in some cells having two values, is obtained when setting the property `QuotingMode` to `QuotationMode.All`.
159
159
{: .text-grey-dk-300 .bg-grey-lt-000 }
160
160
161
161
>⚠️**Caution**
162
162
>{: .text-grey-lt-000 .bg-green-000 }
163
-
>Keep in mind that not all CSV files can be successful imported by change the `QuotingMode`parameter.
163
+
>Keep in mind that not all CSV files can be successful imported by change the `QuotingMode`property.
164
164
{: .text-grey-dk-300 .bg-yellow-000 }
165
165
166
166
The images bellow shows the overall performance for the imports and exports operations from the CSV interface class. Notice, specials syntax CSV’s will sure take more time to be parsed due the parser has extra work to be done.
0 commit comments