type github.com/jackc/pgtype.Value
26 uses
github.com/jackc/pgtype (current package)
array_type.go#L30: func (at *ArrayType) NewTypeValue() Value {
composite_type.go#L75: func (ct *CompositeType) NewTypeValue() Value {
composite_type.go#L165: func assignToOrSet(src Value, dst interface{}) error {
composite_type.go#L170: if setter, ok := dst.(Value); ok {
database_sql.go#L8: func DatabaseSQLValue(ci *ConnInfo, src Value) (interface{}, error) {
enum_type.go#L26: func (et *EnumType) NewTypeValue() Value {
pgtype.go#L127: type Value interface {
pgtype.go#L146: Value
pgtype.go#L150: NewTypeValue() Value
pgtype.go#L158: Value
pgtype.go#L223: Value Value
pgtype.go#L363: var value Value
pgtype.go#L365: value = reflect.New(reflect.ValueOf(t).Elem().Type()).Interface().(Value)
pgtype.go#L859: func NewValue(v Value) Value {
pgtype.go#L863: return reflect.New(reflect.ValueOf(v).Elem().Type()).Interface().(Value)
pgtype.go#L867: var nameValues map[string]Value
pgtype.go#L870: nameValues = map[string]Value{
record.go#L14: Fields []Value
record.go#L32: case []Value:
record.go#L56: case *[]Value:
record.go#L57: *v = make([]Value, len(src.Fields))
record.go#L79: func prepareNewBinaryDecoder(ci *ConnInfo, fieldOID uint32, v *Value) (BinaryDecoder, error) {
record.go#L94: *v = binaryDecoder.(Value)
record.go#L106: fields := make([]Value, scanner.FieldCount())
github.com/jackc/pgx/v4
rows.go#L261: values = append(values, decoder.(pgtype.Value).Get())
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |