Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] Multilanguage support in Talend

My project contains data from all over the world hence all languages are supported. While working with Talend, it seems there is no multi language support in it or not as robust application.
We are populating data into MySQL 5.0 and above it supports UTF-8, we are able to populate multilingual data into it. But using Talend it populates junk characters.
We had imported excel sheets with UTF-8 encoding, it displays in Preview perfectly but at the time of populating data it converts into junk characters.
We also looked at Java code behind it and try to track where it is actually converts characters, but at the time of building job it regenerate the code and all changes are gone but one thing is sure that until database connection, data is correct. something happened in DB library using in Talend.
Can anyone had the same problem, or any direction can be suggested.
Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi
Do you create the mysql connection with UTF-8? To do, add these parameters in the addition JDBC parameter filed:useUnicode=true;characterEncoding=utf8
Best regards
Shong

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Hi
Do you create the mysql connection with UTF-8? To do, add these parameters in the addition JDBC parameter filed:useUnicode=true;characterEncoding=utf8
Best regards
Shong
Anonymous
Not applicable
Author

It worked. Thanks alot