Objective-C and sqlite's DATETIME type

前端 未结 4 1278
逝去的感伤
逝去的感伤 2020-12-01 06:14

I have a sqlite3 table that I\'m trying to map to an object in objective-C. One attribute of the table is \'completed_at\' which is stored as a DATETIME.

I want to c

相关标签:
4条回答
  • 2020-12-01 06:14

    I am sharing here just the core things regarding date formatting for saving and retrieving the data for presentation. If you have any problem with this code snippet then I will share the full code that I used for my project.

    When you save your data, bind your date value in the sql statement like this way:

        NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
        [dateFormat setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
        NSString *dateString=[dateFormat stringFromDate:[NSDate date]];
    
        sqlite3_bind_text(saveStmt, 1, [dateString UTF8String] , -1, SQLITE_TRANSIENT);
    

    and when you retrieve data you have to write this code:

        NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
        [dateFormat setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
        NSDate *myDate =[dateFormat dateFromString:[NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 1)]];
    

    now you have a variable myDate of NSDate type which you can render in your way:

        NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
        [formatter setDateFormat:@"dd-MM-yyyy hh:mm:ss a"];
        NSLog(@"My Date was : %@", [formatter stringFromDate:myDate]);
    

    You must have to remember three things:

    1. In your SQLite date field type should be DATETIME
    2. Date format should be same when you store and when you retrieve
    3. Now you can show in your own way but following the format. Below the format details is given.

    Format:

       'dd' = Day 01-31
       'MM' = Month 01-12
       'yyyy' = Year 2000
       'HH' = Hour in 24 hour
       'hh' = Hour in 12 hour
       'mm' = Minute 00-59
       'ss' = Second 00-59
       'a' = AM / PM
    
    0 讨论(0)
  • 2020-12-01 06:15

    I have zero experience with Objective-C, but I found Apple's NSDate Class Reference with a google search. With the information provided on the linked page you should be able to figure out how to manipulate 32-bit epoch times in Objective-C, and this would work well in SQLite. I would probably create the completed_at column as type INTEGER for 32-bit times.

    SQLite really prefers Julian dates, which are floats. I haven't found any documentation explaining how one might coerce the NSDate class into working with Julians.

    timeIntervalSince1970 looks very interesting.

    0 讨论(0)
  • 2020-12-01 06:22

    The formatter is important if you are trying to effect the presentation but if you use if for internal storage, you are defining a string which can defeat the DB-engine's ability to use the value for computation, comparison, sorting, etc. Also, if you are going to have different clients inserting the date value into the DB you would have to write conversion functions everywhere. I used the following and it worked as expected (schema's column defined as DATETIME):

    dateExpires = [NSDate dateWithTimeIntervalSinceNow: sqlite3_column_double(queryStmt, 5)];
    

    I inserted into the SQLITE3 db with the Firefox add-on as "4/12/2010" here in Central time zone. Viewing the value of 'dateExpires' in XCode-debugger displayed as:

    2010-04-12 23:19:48 -0500
    

    Sure enough, that is the correct time.

    Also, to insert into the SQLITE DB you will put the value [NSDate date]

    0 讨论(0)
  • 2020-12-01 06:35

    This came up a couple of weeks ago:

    Persisting Dates to SQLite3 in an iPhone Application

    0 讨论(0)
提交回复
热议问题