我有一个使用Firefox SQLite Manager插件创建的预先填充的SQLite数据库。 我已将数据库包含到我的项目中,添加到目标并复制到目标组的文件夹中。然后我创建了这个函数来复制Documents文件夹中的DB:
-(void) createEditableDatabase{
BOOL success;
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSString *writableDB = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"DB.sqlite"];
success = [fileManager fileExistsAtPath:writableDB];
if (success){
return;
}
NSString *defaultPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"DB.sqlite"];
error = nil;
success = [fileManager copyItemAtPath:defaultPath toPath:writableDB error:&error];
if (!success){
NSAssert1(0, @"Failed to create writable database file:%@", [error localizedDescription]);
}
if (error){
NSLog(@"error = %@", [error localizedDescription]);
}
}
然后我在-(void)viewDidLoad
中调用此函数,如果我签入模拟器文件夹,则在启动应用程序后会出现数据库的副本。
该应用运行正常,我可以使用从数据库中检索到的数据填充UICollectionView
。
然后,当我尝试插入一些数据时,我没有收到任何错误,但没有数据添加到数据库中。
这是我在MyViewController.h
中使用的代码:
@property (nonatomic) NSString *DBPath;
@property (nonatomic) sqlite3 *myAppSQLITE;
这是我在MyViewController.m
中使用的代码:
-(IBAction)done:(id)sender{
DBPath = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"DB.sqlite"];
const char *dbpath = [DBPath UTF8String];
sqlite3_stmt *statement;
if (sqlite3_open(dbpath, &myAppSQLITE) == SQLITE_OK){
NSString *querySQL = [NSString stringWithFormat:@"INSERT INTO myTable (name, age) VALUES('frank',30);"];
const char *query_stmt = [querySQL UTF8String];
if (sqlite3_prepare_v2(myAppSQLITE, query_stmt, -1, &statement, NULL) == SQLITE_OK){
sqlite3_finalize(statement);
}
sqlite3_close(myAppSQLITE);
}
}
我没有收到错误/警告但数据永远不会更新,即使使用[self.collectionView reloadData];
也是如此。如果我在Firefox中使用SQLite Manager运行相同的查询,一切正常。如果我使用SQLite Manager在Simulator Documents文件夹中打开数据库,则数据库完好无损,没有更新的数据。我使用iPad运行应用程序的结果相同。
我怎么解决这个问题?
提前谢谢。
P.S:David的建议是对的,这是创建可编辑数据库的更好方法:
- (void) createEditableDatabase{
BOOL success;
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *writableDBPath = [documentsDirectory stringByAppendingPathComponent:@"DB.sqlite"];
success = [fileManager fileExistsAtPath:writableDBPath];
if (success){
return;
}
NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"DB.sqlite"];
success = [fileManager copyItemAtPath:defaultDBPath toPath:writableDBPath error:&error];
if (!success) {
NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);
}
}
P.S2:这可能是一个适当的错误检查,让我知道它是否正确。
int rc;
while ((rc = sqlite3_step(statement)) == SQLITE_ROW){
NSLog(@"ROW");
}
if (rc != SQLITE_DONE){
NSLog(@"%s: step error: %d: %s", __FUNCTION__, rc, sqlite3_errmsg(myAppSQLite));
}
答案 0 :(得分:2)
您永远不会通过调用sqlite3_step
来实际执行查询。
你想:
if (sqlite3_prepare_v2(myAppSQLITE, query_stmt, -1, &statement, NULL) == SQLITE_OK){
sqlite3_step(statement); // add appropriate error checking
sqlite3_finalize(statement);
}