我在SQLite文件中保存了核心數據,但我很好奇coredata中的表名是什麼我有三個實體,其中一個是學生。如何在SQLite文件中保存核心數據
在嘗試使用SQLite語句來讀它,它不能進入,而
const char *sqlStatement = "SELECT * FROM students";
sqlite3_stmt *compiledStatement;
if(sqlite3_prepare_v2(database, sqlStatement, -1, &compiledStatement, NULL) == SQLITE_OK) {
while(sqlite3_step(compiledStatement) == SQLITE_ROW) {
NSString *aName = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 1)];
NSLog(aName);
}
}
任何建議,爲什麼不進入if語句?
作爲第一步,我會找出它返回的錯誤代碼並與以下對比:http://www.sqlite.org/c3ref/c_abort.html – badgerr 2011-05-23 15:55:21