0

我第一次在 iPhone 中试用 SQLite。我面临的错误是sqlite3_prepare_v2(database, sql, -1, &selectstmt, NULL) == SQLITE_OK下面的代码中的语句返回 false 并且没有显示任何内容。

下面是我的代码:

+ (void) getInitialDataToDisplay:(NSString *)dbPath {

dbTryAppDelegate *appDelegate = (dbTryAppDelegate *)[[UIApplication sharedApplication] delegate];

if (sqlite3_open([dbPath UTF8String], &database) == SQLITE_OK) {

    const char *sql = "select name,id from studtry";
    sqlite3_stmt *selectstmt;
//below line is never executed and its else part is also not executed.
    if(sqlite3_prepare_v2(database, sql, -1, &selectstmt, NULL) == SQLITE_OK) {

        while(sqlite3_step(selectstmt) == SQLITE_ROW) {

            NSInteger primaryKey = sqlite3_column_int(selectstmt, 0);
            stud *coffeeObj = [[stud alloc] initWithPrimaryKey:primaryKey];
            coffeeObj.studName = [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 0)];

            //coffeeObj.isDirty = NO;

            [appDelegate.studArray addObject:coffeeObj];
          //  [coffeeObj release];
        }
    }
}
else
    sqlite3_close(database); //Even though the open call failed, close the database connection to release all the memory.
}

我哪里错了?我该如何解决?

4

3 回答 3

0

根据您的代码,一切都是正确的,但我认为您传递错误DBPath或者DB文件可能不在正确的位置,请检查这两个点并重试。

于 2013-01-10T06:32:20.493 回答
0

首先从应用程序和模拟器文件夹中删除您的应用程序。然后创建名为 :: Practise.sqlite3 的数据库(SQLite3 的类型)

然后为复制编写此方法:

- (void) copyDatabaseIfNeeded {

   NSFileManager *fileManager = [NSFileManager defaultManager];
   NSError *error;
   dbPath = [self getDBPath];

       BOOL success = [fileManager fileExistsAtPath:dbPath];

   if(!success) {
        NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Practise.sqlite3"];
        success = [fileManager copyItemAtPath:defaultDBPath toPath:dbPath error:&error];
   if (!success)
        NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);
   }
}


- (NSString *) getDBPath {

      NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
      NSString *documentsDir = [paths objectAtIndex:0];

      return [documentsDir stringByAppendingPathComponent:@"Practise.sqlite3"];
}

你可以随时复制这个,

[self copyDatabaseIfNeeded];

然后,检查您的结果。希望它会奏效。

于 2013-01-10T07:30:06.630 回答
0

检查数据库路径、数据库扩展名以及相同的表和字段。

无论如何,

使用 This 而不是直接使用 const string::

NSString *sqlStr = [NSString stringWithFormat:@"select name,id from studtry"];

const char *sql = [sqlStr UTF8String];

在 while 循环 finalize 语句之后,

sqlite3_finalize(selectstmt);

然后,在 If 条件之后,

 sqlite3_close(database);

不需要写在else部分。

希望它对你有用。谢谢。

于 2013-01-10T06:21:48.207 回答