1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 10:13:28 +00:00
This commit is contained in:
Ming Deng 2020-08-26 04:12:30 +00:00
parent 1cb0ff560d
commit 9472cba6c9
3 changed files with 22 additions and 20 deletions

View File

@ -1361,7 +1361,7 @@ setValue:
for i := 0; i < *fi.timePrecision; i++ {
layout += "0"
}
t, err = time.ParseInLocation(layout, s, tz)
t, err = time.ParseInLocation(layout, s[:20+*fi.timePrecision], tz)
} else if len(s) >= 19 {
s = s[:19]
t, err = time.ParseInLocation(formatDateTime, s, tz)

View File

@ -52,6 +52,7 @@ var sqliteTypes = map[string]string{
"string-text": "text",
"time.Time-date": "date",
"time.Time": "datetime",
"time.Time-precision": "datetime(%d)",
"int8": "tinyint",
"int16": "smallint",
"int32": "integer",

View File

@ -506,7 +506,8 @@ var (
)
func init() {
Debug, _ = StrTo(DBARGS.Debug).Bool()
// Debug, _ = StrTo(DBARGS.Debug).Bool()
Debug = true
if DBARGS.Driver == "" || DBARGS.Source == "" {
fmt.Println(helpinfo)