type github.com/jackc/pgx/v5.CopyFromSource
14 uses
github.com/jackc/pgx/v5 (current package)
copy_from.go#L15: func CopyFromRows(rows [][]any) CopyFromSource {
copy_from.go#L39: func CopyFromSlice(length int, next func(int) ([]any, error)) CopyFromSource {
copy_from.go#L70: func CopyFromFunc(nxtf func() (row []any, err error)) CopyFromSource {
copy_from.go#L95: type CopyFromSource interface {
copy_from.go#L113: rowSrc CopyFromSource
copy_from.go#L265: func (c *Conn) CopyFrom(ctx context.Context, tableName Identifier, columnNames []string, rowSrc CopyFromSource) (int64, error) {
tx.go#L139: CopyFrom(ctx context.Context, tableName Identifier, columnNames []string, rowSrc CopyFromSource) (int64, error)
tx.go#L261: func (tx *dbTx) CopyFrom(ctx context.Context, tableName Identifier, columnNames []string, rowSrc CopyFromSource) (int64, error) {
tx.go#L363: func (sp *dbSimulatedNestedTx) CopyFrom(ctx context.Context, tableName Identifier, columnNames []string, rowSrc CopyFromSource) (int64, error) {
github.com/jackc/pgx/v5/pgxpool
conn.go#L102: func (c *Conn) CopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error) {
pool.go#L813: func (p *Pool) CopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error) {
tx.go#L46: func (tx *Tx) CopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error) {
go.pact.im/x/pgxprocess
handle.go#L19: CopyFrom(context.Context, pgx.Identifier, []string, pgx.CopyFromSource) (int64, error)
handle.go#L83: func (h *handle[T, P]) CopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error) {