i'm facing french language issues
```sql
var res = alasql('SELECT market as "March茅", label_number as [num茅ro d'Etiquette] INTO XLSX("' + file_title + '.xlsx",?) FROM ?', [opts, [data1]]); //XLSX
````
the french language not supported. its returns only error
thanks
sakthikumar

Are you sure its not the ' added in the name?
yes i'm sure. ( ' ) definitely needed. bcoz its a french language need to excel column names.
Just escape it => [num茅ro d\'Etiquette]
We Can't Understand.
try this:
var res = alasql('SELECT market as "March茅", label_number as [num茅ro d\'Etiquette] INTO XLSX("' + file_title + '.xlsx",?) FROM ?', [opts, [data1]]);
This also not working.
"num茅ro d\'Etiquette"
var res = alasql('SELECT market as "March茅", label_number as [num茅ro d\'Etiquette] INTO XLSX("' + file_title + '.xlsx",?) FROM ?', [opts, [data1]]);
still error comes.

You are right. ' is not supported in row names. Sorry about that.
PRs welcome.