- (int64_t) getTicks: (NSInteger) fieldno;

The function getTicks() returns content of Date and DateTime field as timestamp in milliseconds since 1970.
Do not forget to call readRecord().


{
    // your code
    [dbf readRecord:row];
    NSLog( @"%f", [dbf getTicks:0] );
    // your code
}