gpt4 book ai didi

ios - 将带重音的单词存储到 Sqlite - iOS

转载 作者:行者123 更新时间:2023-11-29 10:53:24 26 4
gpt4 key购买 nike

我找不到解决方案。我将数据存储到本地 SQLITE 数据库中。除了带重音的单词外,一切正常。如图。

enter image description here

但是,如果我尝试使用 SqliteManager(Firefox 插件)存储带重音的单词,一切正常。总之:当我使用我的应用程序存储重音词时,会出现奇怪的字符。我使用以下代码写入数据(读取相同)。基本上,所有字符串都是 UTF8 编码的。

-(NSInteger)writeData:(NSDictionary* )data table:(NSString* )table
{
sqlite3_stmt *sqlStatement;
NSMutableArray *columns = [[NSMutableArray alloc] init];
NSMutableArray *values = [[NSMutableArray alloc] init];
NSMutableDictionary *temp = [[NSMutableDictionary alloc] initWithDictionary:data];
@try {
assert([data count] != 0);
if ([[data allKeys] count] == 0) return 1;


[temp removeObjectForKey:@"id"];
[columns addObjectsFromArray:[temp allKeys]];
NSString *cols = [columns componentsJoinedByString:@","];
NSMutableString *colNames = [[NSMutableString alloc] initWithString:
[NSString stringWithFormat:@"INSERT INTO %s (",[table UTF8String]]];

[colNames appendString:cols];
[colNames appendString:@")"];

// VALUES FOR INSERT
[values addObjectsFromArray:[temp allValues] ];
NSMutableString *s = [[NSMutableString alloc] init];
for(int i = 0; i < [values count]; i++)
{
[s setString:[NSString stringWithFormat:@"%@",[values objectAtIndex:i]]];
const char* currentValue = [s UTF8String];
[values setObject:[NSString stringWithFormat:@"\"%s\"",currentValue] atIndexedSubscript:i];
}
NSString *vals = [values componentsJoinedByString:@","];
NSMutableString *valNames = [[NSMutableString alloc] initWithString:@" VALUES ("];
[valNames appendString:vals];
[valNames appendString:@")"];

[colNames appendString:valNames];
const char *sql = [colNames UTF8String];
#ifdef DEBUG
NSLog(@"avvDB writeDATA insert string %@",colNames);
#endif

if(sqlite3_prepare(db, sql, -1, &sqlStatement, NULL) != SQLITE_OK)
{
NSLog(@"Problem with prepare statement write %s",sqlite3_errmsg(db));
return 0;

}
if (sqlite3_exec(db, sql, NULL, NULL, NULL) == SQLITE_OK)
{
// NSLog(@"Last id %llu %s",sqlite3_last_insert_rowid(db),sqlite3_errmsg(db));
}

}// end try
@catch(NSException* e)
{
NSLog(@"Eccezione in write %@",[e reason]);
}
@finally {
sqlite3_reset(sqlStatement);
sqlite3_finalize(sqlStatement);
sqlStatement = nil;
return sqlite3_last_insert_rowid(db);
}


}

最佳答案

%s 运算符不支持 unicode 字符。作为String Format Specifiers String Programming Guide 说,它是“8 位无符号字符的空终止数组。”

坦率地说,由于其他原因,您无论如何都不应该使用 stringWithFormat(如果其中一个字符串中有引号怎么办……您的 SQL 语句会失败;您甚至暴露于 SQL 注入(inject)攻击)。您应该改用 ? 占位符(不带引号),然后调用 sqlite3_bind_text对于每个要绑定(bind)到相应问号的参数(请注意,sqlite3_bind_xxx 函数使用从 1 开始的索引,与使用从 0 开始的索引的 sqlite3_column_xxx 不同) .

关于ios - 将带重音的单词存储到 Sqlite - iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19511370/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com