Skip to content

[Go] Add support for parameter binding (Bind and BindStream) #117

@Mandukhai-Alimaa

Description

@Mandukhai-Alimaa

The Databricks ADBC driver currently does not support parameter binding. Both Bind and BindStream methods return adbc.StatusNotImplemented.

func (s *statementImpl) Bind(ctx context.Context, values arrow.RecordBatch) error {
	return adbc.Error{
		Msg:  "Bind not yet implemented for Databricks driver",
		Code: adbc.StatusNotImplemented,
	}
}

func (s *statementImpl) BindStream(ctx context.Context, stream array.RecordReader) error {
	return adbc.Error{
		Msg:  "Bind not yet implemented for Databricks driver",
		Code: adbc.StatusNotImplemented,
	}
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions