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,
}
}
The Databricks ADBC driver currently does not support parameter binding. Both Bind and BindStream methods return adbc.StatusNotImplemented.