Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

french language issues. #1145

Open
sakthi1992 opened this issue Nov 13, 2019 · 7 comments
Open

french language issues. #1145

sakthi1992 opened this issue Nov 13, 2019 · 7 comments

Comments

@sakthi1992
Copy link

sakthi1992 commented Nov 13, 2019

i'm facing french language issues

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

@mathiasrw
Copy link
Member

image

Are you sure its not the ' added in the name?

@sakthi1992
Copy link
Author

sakthi1992 commented Dec 31, 2019

yes i'm sure. ( ' ) definitely needed. bcoz its a french language need to excel column names.

@noid2
Copy link

noid2 commented Dec 31, 2019

Just escape it => [numéro d\'Etiquette]

@sakthi1992
Copy link
Author

We Can't Understand.

@noid2
Copy link

noid2 commented Dec 31, 2019

try this:

var res = alasql('SELECT market as "Marché", label_number as [numéro d\'Etiquette] INTO XLSX("' + file_title + '.xlsx",?) FROM ?', [opts, [data1]]);

@sakthi1992
Copy link
Author

sakthi1992 commented Jan 1, 2020

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

@mathiasrw
Copy link
Member

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

PRs welcome.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants