我正在使用cordova 2.1.0框架在IOS中创建一个应用程序。我在objective-c中使用以下代码创建sqlite3 db:
NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
self.databaseFile = [docDir stringByAppendingPathComponent:@"splistdb.sqlite3"];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
if (![fileManager fileExistsAtPath:self.databaseFile]) {
/*[fileManager copyItemAtPath:[[NSBundle mainBundle] pathForResource:@"FriendsDatabase" ofType:@"sqlite3"] toPath:dbFileName error:&error];*/
NSString *path = [[NSBundle mainBundle] pathForResource:@"splistdb" ofType:@"sqlite3"];
NSLog(@"doc path=%@",path);
[fileManager copyItemAtPath:path toPath:self.databaseFile error:&error];
[self createConfigTable];
NSLog(@"database created");
} else {
NSLog(@"fail to create database");
}
我在构建阶段标题中包含了libsqlite3.dylib文件。但我得到以下错误:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSFileManager copyItemAtPath:toPath:error:]: source path is nil'
我的代码可能有什么问题?感谢。
答案 0 :(得分:0)
您的错误消息显示path
为nil
,可能是因为文件splistdb.sqlite3
未被复制到应用程序包中。确保它在您的项目中,并已添加到目标应用程序中。
答案 1 :(得分:0)
最有可能这条线给你零值
NSString *path = [[NSBundle mainBundle] pathForResource:@"splistdb" ofType:@"sqlite3"];