我读到,在这条路上,我应该找到我的Sqlite db:
~ 图书馆/应用支助/iPhone模拟器/YOUR-IOS-VVISION/应用程序/UNIQUE-KEY-FOR-YOU-APP/文件
But the folder is empty. When I run my app in the simulator I am able to query the db. The db is originally located in the resources folder of my app.
我正与xcode 3.2.6和OS X 10.6.8合作。
有别的地方我可以找吗?
Many thanks. Lapo
-(void)insertError:(Frage *) f
answer2:(NSString *) answer2
answer3:(NSString *) answer3
{
int resconn = sqlite3_open([pathDB UTF8String], &database);
if (resconn == SQLITE_OK) {
NSString * sql = @"Insert into errors (id, answer2,answer3) values (?,?,?)";
const char * sqlStatement = [sql UTF8String];
sqlite3_stmt * compiledStatement;
if (sqlite3_prepare_v2(database, sqlStatement, -1 , &compiledStatement, NULL) == SQLITE_OK) {
sqlite3_bind_text(compiledStatement, 1, [f.id UTF8String], -1 , SQLITE_TRANSIENT);
sqlite3_bind_int(compiledStatement, 2, [answer2 intValue]);
sqlite3_bind_int(compiledStatement, 3, [answer3 intValue]);
}
if (!sqlite3_step(compiledStatement) == SQLITE_DONE) {
//
}
sqlite3_finalize(compiledStatement);
}
sqlite3_close(database);
}