From 764e046d89b47e49b58465b7fa57056f56ae5e17 Mon Sep 17 00:00:00 2001 From: Peter Waller
Date: Tue, 2 Sep 2014 16:36:34 +0100 Subject: [PATCH] Add "date" to decltypes parsed as a unix time --- sqlite3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite3.go b/sqlite3.go index 7280eb8..f133897 100644 --- a/sqlite3.go +++ b/sqlite3.go @@ -474,7 +474,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error { case C.SQLITE_INTEGER: val := int64(C.sqlite3_column_int64(rc.s.s, C.int(i))) switch rc.decltype[i] { - case "timestamp", "datetime": + case "timestamp", "datetime", "date": dest[i] = time.Unix(val, 0) case "boolean": dest[i] = val > 0