我正在尝试将我的应用程序连接到SQLite数据库,但是我收到的消息告诉我数据库已创建,但没有表格。
我调试了程序并发现了
[[NSBundle mainBundle] pathForResource]
始终返回nil
NSString* file = [[NSBundle mainBundle]pathForResource:_databaseName ofType:_databaseType];
为什么会这样? 请帮帮我!
答案 0 :(得分: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];
}
}
告诉我它是否有帮助!
答案 1 :(得分: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数据库连接的更多详情,请尝试此tutorial
欢迎!
答案 2 :(得分:0)
如果您创建了一个sqlite db文件并将其拖到xcode3中的项目中,则它在运行时位于应用程序文档文件夹中。
NSString *databaseName = @"cartoon.db";
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentDir = [documentPaths objectAtIndex:0];
NSString *databasePath = [documentDir stringByAppendingPathComponent:databaseName];
答案 3 :(得分:-1)
每当您使用数据库时,您都必须使用文档目录