English 中文(简体)
模拟器中的文档文件夹是空的。 我的 db. sqlite 在哪里?
原标题:Documents folder is empty in simulator. Where is my db.sqlite?

我读到,在这条路上,我应该找到我的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);
}
问题回答

为了在申请文件文件夹中访问您的资源数据库,您首先需要在应用程序启动时复制该数据库。

如果数据库文件在您的 xcode 工程的资源文件夹中, 它不会自动复制到应用程序的文档目录中 。

为此,您可使用:

NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];

NSError *error;

NSString *databasePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"YOUR_DB_IN_RESOURCES"];

[[NSFileManager defaultManager] copyItemAtPath:databasePath 
                                                toPath:[NSString stringWithFormat:@"%@/%@",documentsDirectory,@"YOUR_DB"]
                                                 error:&error];

这样您就可以使用您现有的代码( [pathDB UTF8String] 应该指向文档目录而不是资源) 访问文档文件夹中现在的文档文件夹中的数据库 。

您提到, 您仍然可以在资源中使用 DB, 但每次您重新启动应用程序时, DB 都会被擦去。 关键是将 db 复制到您的文档文件夹中, 直到应用程序被手动从设备中删除( 应用程序更新期间文档文件夹也会被保存, 所以当用户更新应用程序时, 您的 Db 仍然会保存 ) 。

希望这能帮助:)





相关问题
How to change out-of-focus text selection color in Xcode?

Okay, I ll bite. I ve got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible. When I am doing a project search and iterating through the results, ...

Iphone NSTimer Issue

Hi I am new to objective c. I am trying to make an app for iphone. I have a button on my view, and the click on which the function playSound is called. This is working properly. It does plays the ...

Include a .txt file in a .h in C++?

I have a number of places where I need to re-use some template code. Many classes need these items In a .h could I do something like: #include <xxx.txt> and place all of this code in the ....

Iterating over string/strlen with umlauted characters

This is a follow-up to my previous question . I succeeded in implementing the algorithm for checking umlauted characters. The next problem comes from iterating over all characters in a string. I do ...

Xcode open two editor windows with same file

Is it possible to open the same file in two separate windows in Xcode. I can open a file in one window and the same file in the main Xcode editor window, but I wanted two separate fulltime editor ...

Forcing code signing refresh in Xcode

In our environment, we share resources across multiple projects and platforms. When building for iPhone, only a subset of those resources are needed. Since that subset is still considerable, we have ...

热门标签