Time, Timez, Timestamp, Timestampz, Date column types added.

This commit is contained in:
zer0sub 2019-05-30 14:49:36 +02:00
parent 7b89caa7e0
commit 7f5ba98819
20 changed files with 620 additions and 60 deletions

View file

@ -192,10 +192,8 @@ func ArgToString(value interface{}) string {
case string:
return `'` + bindVal + `'`
case []byte:
return string(bindVal)
return `'` + string(bindVal) + `'`
//TODO: implement
//case time.Time:
// return bindVal.String())
default:
return "[Unknown type]"
}