0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2025-06-09 06:19:24 +00:00

No return error when invalid datetime.

This commit is contained in:
mattn
2012-12-26 09:52:55 +09:00
parent 7ea7c83912
commit acf6044aaf

@ -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
}
}
}