rap2hpoutre / fast-excel

🦉 Fast Excel import/export for Laravel
MIT License
2.09k stars 246 forks source link

Custom delimiter set in configureCsv not used when exporting to CSV #310

Closed matejjurancic closed 1 year ago

matejjurancic commented 1 year ago

Hi,

first of all thanks for this great package!

I am mainly using it for simple (and fast) exports from DB to CSV such as:

(new FastExcel(SomeModel::get()))->configureCsv(';', "'")->export('export.csv');

But after upgrading openspout/openspout to v4 the options set in configureCsv are no longer taken in consideration as the exported CSV is made with the default delimiter ,. Import on the other hand works as expected.