0

我正在尝试将我的应用程序连接到 SQLite 数据库,但我收到消息告诉我数据库已创建但没有表。

我调试了程序,发现 [[NSBundle mainBundle] pathForResource]总是返回nil

NSString* file = [[NSBundle mainBundle]pathForResource:_databaseName ofType:_databaseType];

为什么会这样?请帮我!

4

4 回答 4

1

首先:确保您的数据库在应用程序包中。

然后,您需要实现将路径复制到纪录片目录的方法。因为这些

-(NSString *) getDBPath:(NSString*)databaseName {
// search for the existed paths
NSArray *paths = NSSearchPathForDirectoriesInDomains(  NSDocumentDirectory , NSUserDomainMask, YES);
  NSString *documentsDir = [paths objectAtIndex:0];


return [documentsDir stringByAppendingPathComponent:databaseName];

}

- (void) InstantiateYourDatabase:(NSString *)DatabaseName {


//Using NSFileManager we can perform many file system operations.

NSFileManager *fileManager = [NSFileManager defaultManager];

NSError *error;
NSString *dpname=DatabaseName;

_dbPath = [self getDBPath:dpname];

BOOL success = [fileManager fileExistsAtPath:_dbPath];

NSLog(@"success == %i",success);

if( !success) {

    NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] 
                               stringByAppendingPathComponent:DatabaseName];
    success = [fileManager copyItemAtPath:defaultDBPath toPath:_dbPath error:&error];

}  

}

告诉我它是否有帮助!

于 2012-06-18T10:40:35.130 回答
0

尝试以下代码以查找数据库路径

    NSString *databaseName = @"your_db_name.sql";
    NSString *databasePath;
    // Get the path to the documents directory and append the databaseName
    NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDir = [documentPaths objectAtIndex:0];
    databasePath = [documentsDir stringByAppendingPathComponent:databaseName];
    NSLog(@"Database Path is: %@",databasePath);

您想了解有关 iOS 中 Sqllite 数据库连接的更多详细信息,请尝试本教程

欢迎!

于 2012-06-18T10:35:54.643 回答
0

如果您创建了一个 sqlite db 文件并将其拖到 xcode3 中的项目中,则它在运行时位于应用程序文档文件夹中。

NSString *databaseName = @"cartoon.db";
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *documentDir = [documentPaths objectAtIndex:0];
NSString *databasePath = [documentDir stringByAppendingPathComponent:databaseName];
于 2012-06-18T10:47:36.480 回答
-1

每当您使用数据库时,您都必须使用文档目录

于 2012-06-18T10:42:13.127 回答