-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DBInterface.jl support #206
Comments
Out of curiosity, what is the status on this? |
Hey @iamed2 , Copying our discussion from Slack to here for context:
Here is an implementation that would satisfy the using LibPQ
using DBInterface
DBInterface.connect(::Type{LibPQ.Connection}, args...; kws...) =
LibPQ.Connection(args...; kws...)
DBInterface.prepare(conn::LibPQ.Connection, args...; kws...) =
LibPQ.prepare(conn, args...; kws...)
DBInterface.execute(conn::Union{LibPQ.Connection, LibPQ.Statement}, args...; kws...) =
LibPQ.execute(conn, args...; kws...) To make it consistent with this repository, if we added documentation similarly how is seen in |
Just following up on this -- can I create the PR here to add this support? |
The package does not support
DBInterface.jl
which would be nice for switching databases and to not have to re-write code.The text was updated successfully, but these errors were encountered: