mirror of https://github.com/mattn/go-sqlite3.git
Merge 8a3f369b62
into 846fea6c14
This commit is contained in:
commit
ad08b07ade
|
@ -224,7 +224,8 @@ import (
|
||||||
// SQLiteTimestampFormats is timestamp formats understood by both this module
|
// SQLiteTimestampFormats is timestamp formats understood by both this module
|
||||||
// and SQLite. The first format in the slice will be used when saving time
|
// and SQLite. The first format in the slice will be used when saving time
|
||||||
// values into the database. When parsing a string from a timestamp or datetime
|
// values into the database. When parsing a string from a timestamp or datetime
|
||||||
// column, the formats are tried in order.
|
// column, the formats are tried in order. If the string ends with "Z", that
|
||||||
|
// suffix is trimmed before trying the formats.
|
||||||
var SQLiteTimestampFormats = []string{
|
var SQLiteTimestampFormats = []string{
|
||||||
// By default, store timestamps with whatever timezone they come with.
|
// By default, store timestamps with whatever timezone they come with.
|
||||||
// When parsed, they will be returned with the same timezone.
|
// When parsed, they will be returned with the same timezone.
|
||||||
|
|
Loading…
Reference in New Issue