0

我正在开发一个简单的应用程序,它正在创建一个 sqlite 数据库并将数据插入其中。它工作正常,数据已插入表中。

但是当我停止应用程序(在 xcode 中)并再次运行时,数据没有插入到数据库中。

这是我使用的代码:

+(DBManager*)getSharedInstance{
    if (!sharedInstance) {
        sharedInstance = [[super allocWithZone:NULL]init];
        [sharedInstance createDB];
    }
    return sharedInstance;
}


-(BOOL)createDB{
    NSString *docsDir;
    NSArray *dirPaths;
    // Get the documents directory
    dirPaths = NSSearchPathForDirectoriesInDomains
    (NSDocumentDirectory, NSUserDomainMask, YES);
    docsDir = dirPaths[0];
    // Build the path to the database file
    databasePath = [[NSString alloc] initWithString:
                    [docsDir stringByAppendingPathComponent: @"SchedulerDataBase.db"]];
    BOOL isSuccess = YES;
    NSFileManager *filemgr = [NSFileManager defaultManager];
    if ([filemgr fileExistsAtPath: databasePath ] == NO)
    {
        const char *dbpath = [databasePath UTF8String];
        if (sqlite3_open(dbpath, &database) == SQLITE_OK)
        {
            char *errMsg;
            const char *sql_stmt ="create table if not exists Scheduler (Date integer primary key,Event text)";
            if (sqlite3_exec(database, sql_stmt, NULL, NULL, &errMsg)
                != SQLITE_OK)
            {
                isSuccess = NO;
                NSLog(@"Failed to create table");
            }
            sqlite3_close(database);
            return  isSuccess;
        }
        else {
            isSuccess = NO;
            NSLog(@"Failed to open/create database");
        }
    }
    return isSuccess;
}

-(BOOL)saveData:(int)date withEvent:(NSString *)event
{
    const char *dbpath = [databasePath UTF8String];
    if (sqlite3_open(dbpath, &database) == SQLITE_OK)
    {
        NSString *insertSQL = [NSString stringWithFormat:@"insert into Scheduler (Date, Event) values(\"%d\", \"%@\")",date,event];
        const char *insert_stmt = [insertSQL UTF8String];
        sqlite3_prepare_v2(database, insert_stmt,-1, &statement, NULL);
        if (sqlite3_step(statement) == SQLITE_DONE)
        {
            return YES;
        }
        else {
            return NO;
        }
        sqlite3_reset(statement);
    }
    return NO;
}

当我停止项目然后尝试保存到数据库时,它总是进入这个循环的 else 条件。

if (sqlite3_step(statement) == SQLITE_DONE)
            {
                return YES;
            }
            else {
                return NO;
            }

谁能帮我解决这个问题。提前致谢。

4

2 回答 2

0

在您的保存数据方法中,您似乎永远不会完成您的声明或关闭您的数据库

sqlite3_finalize(statement);
sqlite3_close (_database);

也许您的数据库仍因上次保存尝试而被锁定。

于 2013-10-22T21:01:25.590 回答
0

那是因为您只有在 createDB 时才获得数据库路径,如果您启动程序并且不调用createDB. 你不会saveData

您必须向 saveData 添加以下代码:

NSString *docsDir;
NSArray *dirPaths;
// Get the documents directory
dirPaths = NSSearchPathForDirectoriesInDomains
(NSDocumentDirectory, NSUserDomainMask, YES);
docsDir = dirPaths[0];
// Build the path to the database file
databasePath = [[NSString alloc] initWithString:
                [docsDir stringByAppendingPathComponent: @"SchedulerDataBase.db"]];

或者只是创建一个-(NSString *)openDB返回上述数据库路径的方法,并在 saveData 代码的第一行中使用它,例如:

const char *dbpath = [[self openDB] UTF8String];
于 2013-11-29T12:39:09.717 回答