type github.com/jackc/pgtype.ByteaArray
29 uses
github.com/jackc/pgtype (current package)
bytea_array.go#L14: type ByteaArray struct {
bytea_array.go#L20: func (dst *ByteaArray) Set(src interface{}) error {
bytea_array.go#L23: *dst = ByteaArray{Status: Null}
bytea_array.go#L39: *dst = ByteaArray{Status: Null}
bytea_array.go#L41: *dst = ByteaArray{Status: Present}
bytea_array.go#L49: *dst = ByteaArray{
bytea_array.go#L58: *dst = ByteaArray{Status: Null}
bytea_array.go#L60: *dst = ByteaArray{Status: Present}
bytea_array.go#L62: *dst = ByteaArray{
bytea_array.go#L74: *dst = ByteaArray{Status: Null}
bytea_array.go#L83: *dst = ByteaArray{Status: Present}
bytea_array.go#L93: *dst = ByteaArray{
bytea_array.go#L128: func (dst *ByteaArray) setRecursive(value reflect.Value, index, dimension int) (int, error) {
bytea_array.go#L162: func (dst ByteaArray) Get() interface{} {
bytea_array.go#L173: func (src *ByteaArray) AssignTo(dst interface{}) error {
bytea_array.go#L234: func (src *ByteaArray) assignToRecursive(value reflect.Value, index, dimension int) (int, error) {
bytea_array.go#L281: func (dst *ByteaArray) DecodeText(ci *ConnInfo, src []byte) error {
bytea_array.go#L283: *dst = ByteaArray{Status: Null}
bytea_array.go#L312: *dst = ByteaArray{Elements: elements, Dimensions: uta.Dimensions, Status: Present}
bytea_array.go#L317: func (dst *ByteaArray) DecodeBinary(ci *ConnInfo, src []byte) error {
bytea_array.go#L319: *dst = ByteaArray{Status: Null}
bytea_array.go#L330: *dst = ByteaArray{Dimensions: arrayHeader.Dimensions, Status: Present}
bytea_array.go#L355: *dst = ByteaArray{Elements: elements, Dimensions: arrayHeader.Dimensions, Status: Present}
bytea_array.go#L359: func (src ByteaArray) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
bytea_array.go#L416: func (src ByteaArray) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
bytea_array.go#L461: func (dst *ByteaArray) Scan(src interface{}) error {
bytea_array.go#L479: func (src ByteaArray) Value() (driver.Value, error) {
pgtype.go#L258: ci.RegisterDataType(DataType{Value: &ByteaArray{}, Name: "_bytea", OID: ByteaArrayOID})
pgtype.go#L874: "_bytea": &ByteaArray{},
 |
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. |