我对SQLite完全陌生。我有一个UITableview包含不同的日子。 (周一至周日)。例如,当我单击星期一时,另一个ViewController包含一个UITableview。在同一个ViewController中,当我单击它时,我有一个UIButton可以将数据添加到我的SQLite数据库[ A ],我插入名称和星期几(在本示例中,星期几为'星期一”,这是因为我单击了“星期一 View ” Controller )。

当我插入名称时,它会出现在我的表 View 中。但是当我回到几天后回到我的第一个viewcontroller时,例如,在星期三单击时,我添加的数据也出现在这里。

所以我的问题是;我如何仅在星期一表 View 中而不是其他日期(表 View )中显示我在星期一插入的名称

更多信息:

因此,当用户在“星期一”添加名称时,我将带有添加名称的“星期几”发送到SQLite数据库,当用户在星期三添加名称时,我将“星期几”发送到星期三等。

数据库咖啡看起来像=

CoffeeName    | dayoftheweek
-------------------------
Hello world   | Monday
Hello Planet  | Wednesday
Hello Animal  | Monday
Hello STOVW   | Friday

[A] const char *sql = "insert into Coffee(CoffeeName, dayoftheweek) Values(?, ?)";
我需要检查星期一(例如星期一)是否与星期几(星期一)相同,然后显示所有包含“dayoftheweek星期一”的项目

我的sqlite看起来像:
+ (void) getInitialDataToDisplay:(NSString *)dbPath {


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


        const char *sql = "select coffeeID, coffeeName from coffee";
        sqlite3_stmt *selectstmt;
        if(sqlite3_prepare_v2(database, sql, -1, &selectstmt, NULL) == SQLITE_OK) {

            while(sqlite3_step(selectstmt) == SQLITE_ROW) {

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

               coffeeObj.dayoftheweek = [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 1)];

                coffeeObj.isDirty = NO;

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


- (void) addCoffee1 {


    if(addStmt == nil) {
        const char *sql = "insert into Coffee(CoffeeName, dayoftheweek) Values(?, ?)";
        if(sqlite3_prepare_v2(database, sql, -1, &addStmt, NULL) != SQLITE_OK)
            NSAssert1(0, @"Error while creating add statement. '%s'", sqlite3_errmsg(database));
    }



    sqlite3_bind_text(addStmt, 1, [dayoftheweek UTF8String], -1, SQLITE_TRANSIENT);

    if(SQLITE_DONE != sqlite3_step(addStmt))
        NSAssert1(0, @"Error while inserting data. '%s'", sqlite3_errmsg(database));
    else
        //SQLite provides a method to get the last primary key inserted by using sqlite3_last_insert_rowid
        LesID = sqlite3_last_insert_rowid(database);

    //Reset the add statement.
    sqlite3_reset(addStmt);
}

插入:
coffeeObj.dayoftheweek = [NSString stringWithFormat:@"%@", dayoftheweek];

此插入:monday tuesday wednesday thursday friday saturday or sunday
但是我如何显示在星期一表 View 中插入在星期一的数据以及在星期二 Controller 中插入在星期二的数据等。

我试过 ;
if([coffeeObj.dayoftheweek isEqualToString:@"Monday"]) {

cell.day.text = coffeeObj.LessonName;


} else {

}

展示:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CustomCellIdentifier = @"DaycusViewController";
    DaycusViewController *cell = (DaycusViewController *)[tableView dequeueReusableCellWithIdentifier: CustomCellIdentifier];


    if (cell == nil) {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"DaycusViewController"
                                                     owner:self options:nil];
        for (id oneObject in nib) if ([oneObject isKindOfClass:[DaycusViewController class]])
            cell = (DaycusViewController *)oneObject;
    }


    //Get the object from the array.
    Coffee *coffeeObj = [appDelegate.coffeeArray objectAtIndex:indexPath.row];



    cell.Name.text = CoffeeObj.CoffeeID;
    cell.Day.text =  CoffeeObj.dayoftheweek;


    //i tried this: (not working)

/* 开始 */
if([[CoffeeObj.dayoftheweek isEqualToString:@“Monday”]){
        //  cell.Name.text = CoffeeObj.CoffeeID;
    //cell.Day.text =  CoffeeObj.dayoftheweek;

    } else {

    }
    /* end */

//it need's to display in this example only things where dayoftheweek is monday but.
    return cell;
}

调用函数getInitialDataToDisplay
//Copy database to the user's phone if needed.
[self copyDatabaseIfNeeded];

//Initialize the coffee array.
NSMutableArray *tempArray = [[NSMutableArray alloc] init];
self.coffeeArray = tempArray;
[tempArray release];

//Once the db is copied, get the initial data to display on the screen.
[Coffee getInitialDataToDisplay:[self getDBPath]];

最佳答案

很难理解您的问题,但我认为您可以更好地打开一个新项目并从Core Data开始。它很容易理解,并且比SQLite更快。

核心数据是Apple向开发人员提供的框架,被描述为“模式驱动的对象图管理和持久性框架”。这实际上是什么意思?该框架管理数据的存储位置,存储方式,数据缓存和内存管理。它已从Mac OS X的3.0 iPhone SDK版本移植到iPhone。

核心数据API允许开发人员创建和使用关系数据库,执行记录验证以及使用不带SQL的条件执行查询。从本质上讲,它使您可以与Objective-C中的SQLite进行交互,而不必担心连接或管理数据库架构

有关核心数据的更多信息:

  • https://developer.apple.com/technologies/ios/data-management.html
  • https://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/CoreData/cdProgrammingGuide.html
  • https://developer.apple.com/library/ios/#referencelibrary/GettingStarted/GettingStartedWithCoreData/_index.html

  • 我希望您的应用程序一切顺利,但是我确信Core Data是最适合您的应用程序的!

    关于objective-c - SQLite数据显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9445099/

    10-11 03:06
    查看更多