We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Previously method was named DB.BeginContext, is now DB.BeginTx . Need to update interface for go1.8 release support.
https://go.googlesource.com/go/+/d0501f1da9c54a8053940feeb86e1644ffaae522
The text was updated successfully, but these errors were encountered:
Also in go1.8beta2 compilation fails because these methods are removed:
# github.com/denisenkom/go-mssqldb ../github.com/denisenkom/go-mssqldb/mssql_go18.go:21: undefined: driver.ReadOnlyFromContext ../github.com/denisenkom/go-mssqldb/mssql_go18.go:25: undefined: driver.IsolationFromContext
Sorry, something went wrong.
Yes, they were moved to the TxOptions struct.
mssql: update to latest go1.8 BeginTx
952fdfc
Fixes #193
No branches or pull requests
Previously method was named DB.BeginContext, is now DB.BeginTx .
Need to update interface for go1.8 release support.
https://go.googlesource.com/go/+/d0501f1da9c54a8053940feeb86e1644ffaae522
The text was updated successfully, but these errors were encountered: