Tagged Questions
2
votes
1answer
510 views
How can i format bigint field into a date?
I have a table with a field of type bigint. This field store a timestamp.
I want to date format the field like this :
to_char( bigint_field,'DD/MM/YYYY HH24:MI:SS')
I get the following error :
...
0
votes
1answer
970 views
Convert Sqlite BigInt to Date
I have a Sqlite database that I am using as an ado.net job store for my Quartz.net scheduler jobs. In one table, a column called START_TIME is of type big int.
Is there a way to cast or convert a ...