nbenn opened a new issue, #1394:
URL: https://github.com/apache/arrow-adbc/issues/1394

   For the DBI integration of ADBC via adbcdrivermanager (adbi), I need a way 
to determine the SQL type that corresponds to a given R type. Something like
   
   ```r
   DBI::dbDataType(DBI::ANSI(), integer())
   #> [1] "INT"
   DBI::dbDataType(DBI::ANSI(), character())
   #> [1] "TEXT"
   ```
   
   As adbi is backend-agnostic, I cannot solve this issue as part of adbi, but 
need infrastructure to delegate such requests to. A first iteration (as 
discussed) could be a (doubly dispatched) generic in adbcdrivermanager that for 
a given combination of backend and R type returns the corresponding SQL type.


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