What feature or improvement would you like to see?
All the drivers maintained in the adbc-drivers GitHub org now support passing all connection arguments in a URI that starts with drivername://. And most or all of the driver managers now support searching for drivers based on the URI scheme when the driver is not otherwise specified. However, the SQLite driver maintained in this repo does not accept URIs that begin with sqlite://. I believe the Flight SQL driver here also lacks support for URIs that begin with flightsql://. The former should be simple enough to support. The latter might be awkward because the driver already accepts other schemes like grpc+tcp:// and it needs to pass full the URI down to the Flight SQL layer and where the scheme is meaningful.
What feature or improvement would you like to see?
All the drivers maintained in the
adbc-driversGitHub org now support passing all connection arguments in a URI that starts withdrivername://. And most or all of the driver managers now support searching for drivers based on the URI scheme when the driver is not otherwise specified. However, the SQLite driver maintained in this repo does not accept URIs that begin withsqlite://. I believe the Flight SQL driver here also lacks support for URIs that begin withflightsql://. The former should be simple enough to support. The latter might be awkward because the driver already accepts other schemes likegrpc+tcp://and it needs to pass full the URI down to the Flight SQL layer and where the scheme is meaningful.