简体   繁体   English

sqlite和objective-c中的编码问题

[英]Encoding problem in sqlite and objective-c

I have a file with contents something like this: 我有一个内容如下的文件:

INSERT INTO table VALUES (NULL,'° F','Degrees Fahrenheit');
INSERT INTO table VALUES (NULL,'° C','Degrees Celsius');

Now, to parse this, I have something like this: 现在,要解析这个,我有这样的东西:

NSString *sql = [NSString stringWithContentsOfFile:filename];

Printing this string to the console looks correct. 将此字符串打印到控制台看起来正确。 Then, I want to make an actual insert statement out of it: 然后,我要用它做一个实际的插入语句:

const char *sqlString = [query UTF8String];
const char *endOfString;
if (sqlite3_prepare_v2(db, sqlString + nextStatementStart, -1, &stmt, &endOfString) != SQLITE_OK) {
  return NO;
}

At this point, checking the query still returns the correct result. 此时,检查查询仍会返回正确的结果。 That is, sqlite_sql(stmt) returns INSERT INTO table VALUES (NULL,'° F','Degrees Fahrenheit'); 也就是说, sqlite_sql(stmt)返回INSERT INTO table VALUES (NULL,'° F','Degrees Fahrenheit');

So then I run it with sqlite3_step(stmt); 所以我用sqlite3_step(stmt);运行它

At this point, viewing the database reveals this: 此时,查看数据库将显示以下内容:

1|° F|Degrees Fahrenheit

I'm not using any _16 functions anywhere (like sqlite_open16 ). 我不在任何地方使用任何sqlite_open16函数(例如sqlite_open16 )。

Where is the encoding issue? 编码问题在哪里? How do I fix this? 我该如何解决?

stringWithContentsOfFile: is deprecated as of OSX 10.4 (not sure about iPhone), but you want to specify the encoding here using stringWithContentsOfFile:encoding:error 从OSX 10.4开始不推荐使用stringWithContentsOfFile:对于iPhone不确定),但是您想在这里使用stringWithContentsOfFile:encoding:error指定编码

file contains: file包含:

CREATE TABLE myvalues (foo TEXT, bar TEXT, baz TEXT);
INSERT INTO myvalues VALUES (NULL,'° F','Degrees Fahrenheit');

test.m contains (no error handling provided): test.m包含(未提供错误处理):

int main(int argc, char** argv)
{
    NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];

    NSString* s = [NSString stringWithContentsOfFile:@"file"
                            encoding:NSUTF8StringEncoding
                        error:nil];
    NSLog(@"s: %@", s);

    sqlite3* handle;
    sqlite3_open("file.db", &handle);
    sqlite3_exec(handle, [s UTF8String], NULL, NULL, NULL);
    sqlite3_close(handle);

    [pool release];
}

Then dumping: 然后转储:

% sqlite3 file.db
SQLite version 3.6.12
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .dump
BEGIN TRANSACTION;
CREATE TABLE myvalues (foo TEXT, bar TEXT, baz TEXT);
INSERT INTO "myvalues" VALUES(NULL,'° F','Degrees Fahrenheit');
COMMIT;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM