hi
this code displays the text correctly in the device.
i store the string "தமிழ் மொழி" stored in mysql database table to a sqlite table stored locally in the device using httpjob...
i read the sqlite table using dbuttils.
when i try the following
it is displayed as "?????? ?????"
i had viewed the sqlite table using SQLiteViewer utility, the field value is stored/displayed as "?????? ????" in the table
is any conversion process is required at the time of storing in sqllite table ? i read the default utf8 coding is used by sqlite.
can someone help ?
B4X:
lbl.text= "தமிழ் மொழி"
this code displays the text correctly in the device.
i store the string "தமிழ் மொழி" stored in mysql database table to a sqlite table stored locally in the device using httpjob...
i read the sqlite table using dbuttils.
when i try the following
B4X:
lbl.text=(value retrieved from the sqlite table )
it is displayed as "?????? ?????"
i had viewed the sqlite table using SQLiteViewer utility, the field value is stored/displayed as "?????? ????" in the table
is any conversion process is required at the time of storing in sqllite table ? i read the default utf8 coding is used by sqlite.
can someone help ?