ianmcook commented on PR #4537:
URL: https://github.com/apache/arrow-adbc/pull/4537#issuecomment-4999627587

   These should both work but error:
   
   ```js
   const db = new AdbcDatabase({
     driver: 'sqlite',
     databaseOptions: { profile: './profile.toml' },
   });
   ```
   
   ```js
   const db = new AdbcDatabase({
     driver: 'sqlite',
     databaseOptions: { uri: 'profile://./profile.toml' },
   });
   ```
   
   In other driver managers, code like this succeeds as long as the driver 
passed as an argument doesn't disagree with the driver set in the connection 
profile.


-- 
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]

Reply via email to