aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3.go b/sqlite3.go
index e966d35..05b91cd 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -331,7 +331,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error {
if err != nil {
dest[i], err = time.Parse(SQLiteDatetimeFormat, s)
if err != nil {
- return err
+ dest[i] = s
}
}
}