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 ODBC
db= ODBC.Connection(...) # connect to a MSSQL db, for example via a Docker image
query ="SELECT @@VERSION"
DBInterface.execute(db, query) # works
DBInterface.execute(identity, db, query) # throws error
The text was updated successfully, but these errors were encountered:
When using the method of
DBInterface.execute
with an initial function argument, ODBC.jl throws an error due to an undefinedclose!
function.Error:
MWE:
The text was updated successfully, but these errors were encountered: