gpt4 book ai didi

objective-c - SQLite 数据显示

转载 作者:IT王子 更新时间:2023-10-29 06:24:25 25 4
gpt4 key购买 nike

我是 SQLite 的新手。我有一个包含不同日期的 UITableview。 (周一至周日)。例如,当我在星期一单击时,另一个 viewcontroller 包含其中也包含一个 UITableview。在同一个 View Controller 中,我有一个 UIButton,当我点击它时,我可以将数据添加到我的 SQLite 数据库 [A],我插入 name 和星期几(星期几在这个例子中是“星期一”,那是因为我点击了星期一 View Controller )。

当我插入一个名称 时,它会出现在我的表格 View 中。但是当我回到我的第一个 View Controller 时,我在星期三点击例如我添加的数据也出现在那里。

所以我的问题是;我怎样才能显示我在星期一插入的名字,只在星期一的表格 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 monday”的所有项目

我的 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];

此插入:星期一星期二星期三星期四星期五星期六或星期日

但是我如何在星期一的 TableView 中显示星期一插入的数据以及在星期二 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 更快。

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

Core Data API 允许开发人员创建和使用关系数据库、执行记录验证以及使用无 SQL 条件执行查询。它本质上允许您在 Objective-C 中与 SQLite 交互,而不必担心连接或管理数据库模式

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

祝你申请顺利,但我确信 Core Data 最适合你的申请!

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com