Hello,
We are finishing a new app. This app contains 18 languages.
We use Coronium and we use PushBots, we want to send the push messages in the language of the receiver.
We have a dbase running on the server containing all languages. When we send a query to this dbase and the result is e.g. Cyrillic or japanese, the result is a string containing only questionmarks! Only languages like English, Dutch, German, etc. seem to work fine.
[lua]
coronium.mysql.query( { database = “lang” }, “SELECT * FROM languages” ) to get our records.
if not answer.error then
for _, record in ipairs( answer.result ) do
print( record.text )
end
end
[/lua]