lovasoa / SQLpage

SQL-only webapp builder, empowering data analysts to build websites and applications quickly
https://sql.ophir.dev
MIT License
882 stars 62 forks source link

The "separator" parameter of the CSV component does not work #352

Closed lovasoa closed 1 month ago

lovasoa commented 1 month ago

Discussed in https://github.com/lovasoa/SQLpage/discussions/345

Originally posted by **ThierryM** May 28, 2024 Hi, I would download data from SQLpage with ";" separator but I don' succeed. The .csv file obtained has the "," as separator. My code to export is : `SELECT 'csv' as component, 'Exporter le fichier des établissements ' as title, 'etablissements' as filename, 'file-download' as icon, 'green' as color, ';' as separator;` Where is my mistake ? Thanks for your help.