0

まず、ごめんなさい。私は英語がうまくない。やあ。私はiOSの初心者です。

現在、私はこのように開発しています:

  1. 自動生成されたコアデータsqliteファイルを削除します

  2. firefox sqlite manager (Z_PK、Z_ENT、Z_OPTを使用するsqlite)を使用して、作成したsqliteファイルを削除したsqliteファイルパスにコピーします

2つの質問:

  1. Firefoxsqlitemanagerを使用してエンティティ関係を作成する方法。
  2. 関係削除ルール、sqliteマネージャーの属性プロパティなどの詳細なコアデータオプションの場合の事前作成方法。
4

2 に答える 2

0

基本的に、スキーマを使用してプロジェクトによって作成された空のデータベースを取得し、それを操作して必要なデータを保持する必要があります。詳細はこちら

リンクに記載されていない別の方法は、Core Data自体(および他のデータベースを読み取るためのSQLiteライブラリ)を使用して、データベースからCoreDataデータベースにデータをコピーすることです。

于 2013-03-15T04:10:03.260 に答える
0
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {
if (_persistentStoreCoordinator != nil) {
    return _persistentStoreCoordinator;
}

NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"CoreDataBooks.CDBStore"];

/*
 Set up the store.
 For the sake of illustration, provide a pre-populated default store.
 */
NSFileManager *fileManager = [NSFileManager defaultManager];
// If the expected store doesn’t exist, copy the default store.
if (![fileManager fileExistsAtPath:[storeURL path]]) {
    NSURL *defaultStoreURL = [[NSBundle mainBundle] URLForResource:@"CoreDataBooks" withExtension:@"CDBStore"];
    if (defaultStoreURL) {
        [fileManager copyItemAtURL:defaultStoreURL toURL:storeURL error:NULL];
    }
}

NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];
_persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: [self managedObjectModel]];

NSError *error;
if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:options error:&error]) {
    /*
     Replace this implementation with code to handle the error appropriately.

     abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. 

     Typical reasons for an error here include:
     * The persistent store is not accessible;
     * The schema for the persistent store is incompatible with current managed object model.
     Check the error message to determine what the actual problem was.


     If the persistent store is not accessible, there is typically something wrong with the file path. Often, a file URL is pointing into the application's resources directory instead of a writeable directory.

     If you encounter schema incompatibility errors during development, you can reduce their frequency by:
     * Simply deleting the existing store:
     [[NSFileManager defaultManager] removeItemAtURL:storeURL error:nil]

     * Performing automatic lightweight migration by passing the following dictionary as the options parameter:
     @{NSMigratePersistentStoresAutomaticallyOption:@YES, NSInferMappingModelAutomaticallyOption:@YES}

     Lightweight migration will only work for a limited set of schema changes; consult "Core Data Model Versioning and Data Migration Programming Guide" for details.

     */
    NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
    abort();
}

return _persistentStoreCoordinator;

Appleドキュメントから取得したコードCoreDataBooksLinkコアデータ 介して入力されたデータの事前入力されたDBが必要です。この関数は、アプリが最初に起動したときに、事前に入力されたデータベースをメインのDBストアの場所にコピーします。


于 2013-03-27T02:09:07.710 に答える