Android Question What DB I must use?

I have an app developed for my church, but I need it in Greek, I use SQlite as DB but don't support Greek, when I try to put info in Greek show only ????????????, can you recommend me another DB (free) that support the language that I need. THANKS
 
SQLite supports all languages. You did a mistake somewhere. Probably when you read data from a file or website.
Erel, thanks for your answer, but, I have an .csv with all the info in greek and when I copy to de db only shows me ????? in the fields, I check the languages in SQlite and don't show greek. My app is ready but I need to present in greek to my superiors.
 
Upvote 0
SQLite supports all languages. You did a mistake somewhere. Probably when you read data from a file or website.

My excuses EREL, you are ok and I'm wrong. It's the csv that convert all characters from greek to ??????. So please tell me how can I pass directly from xls to the db
 
Upvote 0
I'm afraid that your .csv file is encoded with Windows-1253 and not UTF-8.
Try to convert it with notepad++.
Thanks for your answer, I have all ok in the xls file, but if I try to convert to csv something happens and change all the characters to ??????, same if I try to open with notepad
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top