Alasql: french language issues.

Created on 13 Nov 2019  路  7Comments  路  Source: agershun/alasql

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

! Feature request

All 7 comments

image

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.

image

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

PRs welcome.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

mathiasrw picture mathiasrw  路  5Comments

AmyBlankenship picture AmyBlankenship  路  6Comments

SWard1992 picture SWard1992  路  3Comments

karubimania picture karubimania  路  6Comments

mwhebert picture mwhebert  路  3Comments