type database/sql/driver.Value

29 uses

	database/sql/driver (current package)
		driver.go#L61: type Value any
		driver.go#L75: 	Value Value
		driver.go#L185: 	Exec(query string, args []Value) (Result, error)
		driver.go#L212: 	Query(query string, args []Value) (Rows, error)
		driver.go#L354: 	Exec(args []Value) (Result, error)
		driver.go#L360: 	Query(args []Value) (Rows, error)
		driver.go#L442: 	Next(dest []Value) error
		types.go#L32: 	ConvertValue(v any) (Value, error)
		types.go#L42: 	Value() (Value, error)
		types.go#L63: func (boolType) ConvertValue(src any) (Value, error) {
		types.go#L108: func (int32Type) ConvertValue(v any) (Value, error) {
		types.go#L141: func (stringType) ConvertValue(v any) (Value, error) {
		types.go#L155: func (n Null) ConvertValue(v any) (Value, error) {
		types.go#L168: func (n NotNull) ConvertValue(v any) (Value, error) {
		types.go#L227: func callValuerValue(vr Valuer) (v Value, err error) {
		types.go#L236: func (defaultConverter) ConvertValue(v any) (Value, error) {

	database/sql
		convert.go#L553: func callValuerValue(vr driver.Valuer) (v driver.Value, err error) {
		ctxutil.go#L137: func namedValueToValue(named []driver.NamedValue) ([]driver.Value, error) {
		ctxutil.go#L138: 	dargs := make([]driver.Value, len(named))
		sql.go#L204: func (ns NullString) Value() (driver.Value, error) {
		sql.go#L230: func (n NullInt64) Value() (driver.Value, error) {
		sql.go#L256: func (n NullInt32) Value() (driver.Value, error) {
		sql.go#L283: func (n NullInt16) Value() (driver.Value, error) {
		sql.go#L310: func (n NullByte) Value() (driver.Value, error) {
		sql.go#L336: func (n NullFloat64) Value() (driver.Value, error) {
		sql.go#L362: func (n NullBool) Value() (driver.Value, error) {
		sql.go#L388: func (n NullTime) Value() (driver.Value, error) {
		sql.go#L2934: 	lastcols []driver.Value
		sql.go#L3005: 		rs.lastcols = make([]driver.Value, len(rs.rowsi.Columns()))