frbvianna commented on issue #4140:
URL: https://github.com/apache/arrow-adbc/issues/4140#issuecomment-4137833889
Are we still able to use the Go Snowflake driver in the old way after
migrating to the adbc-drivers/snowflake repo?
e.g.
```go
drv := snowflake.NewDriver(memory.NewGoAllocator())
db, err := drv.NewDatabase(map[string]string{
snowflake.OptionAuthType: snowflake.OptionValueAuthSnowflake
// ... other options
})
if err != nil {
return err
}
```
I'm asking this because
[adbc-quickstarts/go/snowflake](https://github.com/columnar-tech/adbc-quickstarts/tree/main/go/snowflake)
instructs to install the driver using a new tool (dbc), then provides a
different adbc.Database initialization in the main.go file, but I see that the
[snowflake.Driver](https://github.com/adbc-drivers/snowflake/blob/a1cc9bbf384512061a6845db242b600ecbc827b2/go/driver.go#L235)
is still present in the new repo. Do we still need to install using dbc if we
go this way?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]