I would like to use ODBC.jl to connect to a PostgreSQL and first thought it is just not easily possible. Then I read that ODBC.jl actually wraps their own drivers in artifacts like unixODBC_jll.
Unfortunately I am still completely lost given the documentation. The adddsn requires a driver name, but ODBC.drivers() returns an empty Dict by default, and adddriver requires a path to somewhere on the filesystem, but I just want to use the default drivers.
I really hope that only the documentation or my understanding of it is incomplete and that one can really use the drivers in the artifact unixODBC_jll
I would like to use ODBC.jl to connect to a PostgreSQL and first thought it is just not easily possible. Then I read that ODBC.jl actually wraps their own drivers in artifacts like
unixODBC_jll
.Unfortunately I am still completely lost given the documentation. The
adddsn
requires a driver name, butODBC.drivers()
returns an empty Dict by default, andadddriver
requires a path to somewhere on the filesystem, but I just want to use the default drivers.I really hope that only the documentation or my understanding of it is incomplete and that one can really use the drivers in the artifact
unixODBC_jll
any help is highly appreciated