feat: add sqlType

This commit is contained in:
zhaoyupeng
2025-07-03 14:57:10 +08:00
parent c1edd8f34d
commit 526b045816
6 changed files with 437 additions and 0 deletions

9
sqlType/err.go Normal file
View File

@ -0,0 +1,9 @@
package sqlType
import "errors"
var (
ErrConvertScanVal = errors.New("convert scan val to str err")
ErrInvalidScanVal = errors.New("scan val invalid")
ErrConvertVal = errors.New("convert err")
)