jacobmarble commented on PR #34331: URL: https://github.com/apache/arrow/pull/34331#issuecomment-1447289455
Here's my alternative proposal: https://github.com/apache/arrow-adbc/pull/480 As documented in the PR example, use is: ```golang import ( "database/sql" _ "github.com/apache/arrow-adbc/go/adbc/sqldriver/flightsql" ) func Example() { db, err := sql.Open("flightsql", "uri=grpc://localhost:12345") if err != nil { panic(err) } _ = db.Ping() } ``` I still find `github.com/apache/arrow-adbc/go/adbc/sqldriver/flightsql` to be very long-winded, but if documentation consistently points to it, then I think we'll help folks out. -- 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]
