sosolyht
Results
2
comments of
sosolyht
@brlala thank you, but this solution does not work with mysql
```go func convertInterfaceToInt64(t interface{}) (int64, error) { switch t := t.(type) { case int64: return t, nil case int: return int64(t), nil case string: return strconv.ParseInt(t, 10, 64) case []byte:...