We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0427a2c commit e9d65e0Copy full SHA for e9d65e0
src/dbinterface.jl
@@ -8,4 +8,4 @@ DBInterface.execute(conn::DBConnection, args...; kws...) = execute(conn.conn, ar
8
DBInterface.execute(conn::DBConnection, str::AbstractString; kws...) = execute(conn.conn, str; kws...)
9
DBInterface.execute(conn::DBConnection, str::AbstractString, params; kws...) = execute(conn.conn, str, params; kws...)
10
DBInterface.execute(stmt::Statement, args...; kws...) = execute(stmt, args...; kws...)
11
-DBInterface.close!(conn::DBConnection) = close(conn)
+DBInterface.close!(conn::DBConnection) = close(conn.conn)
0 commit comments