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:
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user