We were using myOdbc
connector to connect our asp pages to database, our database is quite old, we have big table with user records approx. 500k rows. Everything is utf8
and working good. In mysql / phpmyadmin records are shown as ansii chars. For example ελληνικά
is the Word, but we see ελληνικά
in database. But everything works fine at frontend.
Now we decided to create restful java webservices, and front end with angular/bootstrap. Everything seems fine all utf settings are done, but when we post/get
we receive strings as they are in mysql table; we get ελληνικά
for this sample, not ελληνικά.
On same server I checked another Project, it is utf, I added some words, but as I see phpymadmin shows them with normal letters. If I post/insert ελληνικά , it is ελληνικά in table and phpmyadmin.
- What should I do, what is the correct way to handle this issue ?
- If I insert ελληνικά by hand in phpmyadmin, the old website shows ?.
- Which is the best and correct way?
- I have to change all data to normal letters, how should I do that ?
- Can mysql handle this ?
Thanks in advance