type ValueConverter …
type Valuer …
var Bool …
type boolType …
var _ …
func (boolType) String() string { … }
func (boolType) ConvertValue(src any) (Value, error) { … }
var Int32 …
type int32Type …
var _ …
func (int32Type) ConvertValue(v any) (Value, error) { … }
var String …
type stringType …
func (stringType) ConvertValue(v any) (Value, error) { … }
type Null …
func (n Null) ConvertValue(v any) (Value, error) { … }
type NotNull …
func (n NotNull) ConvertValue(v any) (Value, error) { … }
func IsValue(v any) bool { … }
func IsScanValue(v any) bool { … }
var DefaultParameterConverter …
type defaultConverter …
var _ …
var valuerReflectType …
func callValuerValue(vr Valuer) (v Value, err error) { … }
func (defaultConverter) ConvertValue(v any) (Value, error) { … }
type decimalDecompose …