문제

I have a problem as this question: Want to add Superscript data to Sqlite database

Can you give me an example about INSERT statement. I don't know more about <sub> and <sup>, and unicode characters.

Thanks you!

도움이 되었습니까?

해결책

try this one

NSString *num = @"20\u02b0";
     NSString *insertSQL = [NSString stringWithFormat: @"INSERT INTO table_name (feild1,feild2) VALUES ('%@',' %@');",num,string2];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top