You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using version 0.8.2 with Julia 1.1.0 ODBC.drivers() only returns 0×2 Array{String,2}
Using unixODBC 2.3.4 and testing driver and DSN with isql works fine. ODBCINIand ODBCINSTINI are set correctly in environment.
How can I specify the driver? ODBC.ODBCDriverConnect! looks like it could be a good candidate, but its not documented (see #232)
The text was updated successfully, but these errors were encountered:
This should be fixed on master; we now ship and configure our own driver managers (iODBC/unixODBC) that should use a consistent odbcinst.ini file (on non-windows of course). Note, however, that after doing ODBC.adddriver or ODBC.removedriver, you often need to restart your julia session to see the changes reflected in ODBC.drivers() since the driver manager will often cache the file per session.
Using version 0.8.2 with Julia 1.1.0
ODBC.drivers()
only returns0×2 Array{String,2}
Using unixODBC 2.3.4 and testing driver and DSN with
isql
works fine.ODBCINI
andODBCINSTINI
are set correctly in environment.How can I specify the driver?
ODBC.ODBCDriverConnect!
looks like it could be a good candidate, but its not documented (see #232)The text was updated successfully, but these errors were encountered: