Jann Roder wrote: > > I just tested the new version that should have the fix for this and now > I get an ArgumentOutOfRangeException exception when I actually have a > value of Int64.MaxValue in a date column. Stack trace: >
I am able to recreate the exception here. The value of Int64.MaxValue is 9223372036854775807. The UnixEpoch values are measured in seconds from the epoch 1970-01-01 00:00:00Z. Adding 9223372036854775807 seconds to the UnixEpoch would result in a DateTime far beyond the allowed maximum value for DateTime in the .NET Framework, which is 9999-12-31 23:59:59.9999999. -- Joe Mistachkin