テキスト ビューにテキストの文字列を表示しようとしています。NSLog によると、データベースは見つかりましたが、テーブルからデータを取得できません。誰かが私のクエリの何が問題なのか指摘できますか? (これについては、非常に簡単な言葉で説明する必要があるかもしれません。objective-c を歌い始めてまだ数日しか経っていません。)
- (void)viewDidLoad {
NSString *docsDir;
NSArray *dirPaths;
// Get the documents directory
dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
docsDir = [dirPaths objectAtIndex:0];
// Build the path to the database file
databasePath = [[NSString alloc] initWithString: [docsDir stringByAppendingPathComponent:@"trivia_game.db"]];
NSLog(@"Full DB path: %@", databasePath);
NSFileManager *filemgr = [NSFileManager defaultManager];
if ([filemgr fileExistsAtPath: databasePath ] == NO)
{
const char *dbpath = [databasePath UTF8String];
NSLog(@"[SQLITE] DB not found");
} else {
NSLog(@"[SQLITE] trivia_game.db found");
}
const char *dbpath = [databasePath UTF8String];
sqlite3_stmt *statement;
if (sqlite3_open(dbpath, &questionsForGame) == SQLITE_OK)
{
NSLog(@"[SQLITE] db opened");
NSString *querySQL = [NSString stringWithFormat: @"SELECT question, answer0, answer1, answer2, answer3 FROM questions"];
NSLog(@"[SQLITE] string is: %@", querySQL);
const char *query_stmt = [querySQL UTF8String];
if (sqlite3_prepare_v2(questionsForGame, query_stmt, -1, &statement, NULL) == SQLITE_OK)
{
NSLog(@"[SQLITE] written!");
if (sqlite3_step(statement) == SQLITE_ROW)
{
NSString *textField = [[NSString alloc] initWithUTF8String:(const char *) sqlite3_column_text(statement, 0)];
questHolder.text = textField;
NSLog(@"[SQLITE] string is: %@",textField);
[textField release];
} else {
questHolder.text = @"query not found";
NSLog(@"[SQLITE] Unable to open database!");
}
sqlite3_finalize(statement);
sqlite3_close(questionsForGame);
} else {
NSLog(@"[SQLITE] Screwed up query!");
questHolder.text = @"query not found";
}
}
[filemgr release];
[super viewDidLoad];
}
ログ:
[セッションは 2012-05-28 12:27:19 -0300 で開始されました。 /4.3/アプリケーション/0B4C50FB-5A3F-4371-83D6-1A2AF95B9F66/ドキュメント/trivia_game.db
2012-05-28 12:27:20.549 ans[9374:207] [SQLITE] trivia_game.db が見つかりました
2012-05-28 12:27:20.550 ans[9374:207] [SQLITE] データベースが開かれました
2012-05-28 12:27:20.551 ans[9374:207] [SQLITE] 文字列: SELECT 質問、回答 0、回答 1、回答 2、回答 3 FROM 質問
2012-05-28 12:27:20.553 ans[9374:207] [SQLITE] クエリを台無しに!