
3 Nov
2011
3 Nov
'11
4:31 p.m.
On 3 November 2011 16:20, Jordan Blay <be.special@gmail.com> wrote:
Is there a way in dbappender, that timestamp field in logging_event will be a real date instead of int?
No. Different databases support different forms of a time stamp with different granularity, so the only reliably portable way to do it is with an int; you'll need to use a database specific function to turn in to you database specific timestamp - e.g. FROM_UNIXTIME on MySQL (from memory - please check!). Greg