1 2 3 4 5 6 7 8 9 10
EGODatabase* database = [EGODatabase databaseWithPath:[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/database.db"]];
EGODatabaseResult* result = [database executeQuery:@"SELECT * FROM `posts` WHERE `post_user_id` = ?", [NSNumber numberWithInt:10]];
for(EGODatabaseRow* row in result) {
	NSLog(@"Subject: %@", [row stringForColumn:@"post_subject"]);
	NSLog(@"Date: %@", [row dateForColumn:@"post_date"]);
	NSLog(@"Views: %d", [row intForColumn:@"post_views"]);
	NSLog(@"Message: %@", [row stringForColumn:@"post_message"]);
}