iOS SQLite - Max()函数

时间:2012-02-04 15:56:34

标签: ios sqlite ios5 xcode4.2

我的iOS应用程序中有一个SQLite数据库。我正在尝试使用SQL函数MAX()

- (void) getMaxTime {

if (sqlite3_open([databasePath UTF8String], &timingsDatabase) == SQLITE_OK) 
{
    NSString *maxTimeStatement = [NSString stringWithFormat:@" SELECT max(NUMBERS) FROM TIMINGS"];
    sqlite3_stmt *statement;
    if(sqlite3_prepare_v2(timingsDatabase, [maxTimeStatement UTF8String], -1, &statement, nil) == SQLITE_OK){
        while (sqlite3_step(statement) == SQLITE_ROW) {
            massimo = sqlite3_column_int(statement, 0);

            NSLog(@"The maximun time is %d seconds ", massimo);
        } 
        sqlite3_finalize(statement);
        sqlite3_close(timingsDatabase);     
    }      
}

NUMBERS列中的所有数字在昏迷后都有6位数 如果所有数字都是&gt;那么一切正常。 10或所有数字都<10。

但是(例子)当我试图获得最大值时:

  • 1.339670
  • 2.955537
  • 11.355558

它打印:“最大时间是2秒”(而不是11)!我很难理解为什么。

*编辑

这就是我的数据库的创建方式:

-(void)createDatabase 
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];

    databasePath = [[NSString alloc]initWithString:[documentsDirectory stringByAppendingPathComponent:@"timings.db"]];

    if ([[NSFileManager defaultManager] fileExistsAtPath:databasePath] == FALSE)
    {
        if (sqlite3_open([databasePath UTF8String], &timingsDatabase) == SQLITE_OK)
        {
            const char *sqlStatement = "CREATE TABLE IF NOT EXISTS TIMINGS (ID INTEGER PRIMARY KEY AUTOINCREMENT, TIMESTAMP TEXT, TIMING TEXT, NUMBERS TEXT)";
            char *error;
            sqlite3_exec(timingsDatabase, sqlStatement, NULL, NULL, &error);
            sqlite3_close(timingsDatabase);
        }
    }
}

这就是时间存储的方式:

-(void)storeTiming 
{
    if (sqlite3_open([databasePath UTF8String], &timingsDatabase) == SQLITE_OK)
    {
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"HH:mm:ss.SSS"];

        NSString *insertStatement = [NSString stringWithFormat:@"INSERT INTO TIMINGS (TIMESTAMP, TIMING, NUMBERS) VALUES (\"%@\", \"%@\", \"%f\")", [dateFormatter stringFromDate:startDate], stopWatchLabel.text , intervallo] ;


        char *error;
        sqlite3_exec(timingsDatabase, [insertStatement UTF8String], NULL, NULL, &error);
        sqlite3_close(timingsDatabase);
    }
} 

1 个答案:

答案 0 :(得分:0)

似乎列的数据类型是字符串...您应该将其更改为float以使用MAX()函数。