Hello freinds i am trying to insert some danish text in my table of sqlite3 db and for that i m inserting it as...
NSString *sqlTemp =[NSString stringWithFormat:
@"INSERT INTO myTable (firstArg,secondArg,thirdArg,fourthArg) VALUES ('%@','%@','%@','%@')",
txt1,text2,txt3,txt4];
const char *sql = [sqlTemp UTF8String];
type of all arguements while creating table is declared as "text".
the issue is when i retreive the data from db and want to set as text of uitextview it is diplaying somthing like "√Ö√¶√∏√¶"
for danish text "Åæøæ"
Can any one suggest some solution for this .
Thanks in advance
Paggyy