-
Notifications
You must be signed in to change notification settings - Fork 145
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
Implement driver.ExecerContext #137
Comments
It does not.
What do you mean
True. I don't need this feature. I am not planing to implement it. Feel free to change it yourself. I will be happy to answer any questions, and review you change, if you like. Thank you. Alex |
// Exec executes a query that doesn't return rows, such
// as an INSERT or UPDATE.
//
// Deprecated: Drivers should implement StmtExecContext instead (or additionally).
Exec(args []Value) (Result, error)
From the |
Thanks for the reference. This just says don't use Exec, if you could use StmtExecContext. But we could not use StmtExecContext, so we will use Exec for now.
Will do.
Same. I don't have spare time to spend on this. So, if you really need it, just have a go. And I am not ODBC expert myself, I needed to access data in my MS SQL Server, so I built this. Alex |
Please explore the |
I've decided to take a stab at this and have submitted pull request #151 to add context support |
Hi, it seems that the driver doesn't implement the
driver.ExecerContext
interface. TheExecer
one is going to be deprecated soon. Apparently there is no way to cancel a request, as it is now.The text was updated successfully, but these errors were encountered: