-
Notifications
You must be signed in to change notification settings - Fork 28
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 error struct #119
Comments
So I should use https://pkg.go.dev/github.com/vertica/vertica-sql-go#VError.SQLState, right? What value contains https://pkg.go.dev/github.com/vertica/vertica-sql-go#VError.ErrorCode then? Thanks for the pull request 👍 |
Other sql drivers returns struct implementing error interface.
Ex.
https://pkg.go.dev/github.com/lib/pq#Error
https://pkg.go.dev/github.com/go-sql-driver/mysql#MySQLError
https://pkg.go.dev/github.com/jackc/pgconn#PgError
https://pkg.go.dev/github.com/denisenkom/go-mssqldb#Error
https://pkg.go.dev/github.com/snowflakedb/gosnowflake#SnowflakeError
Vertica returns pure string
Error: [42V01] Relation "my_table" does not exist
The only possible way how to get the error code is parse the string, which is suboptimal.
And Unfortunately it is not possible if errors wrapping is used.
The text was updated successfully, but these errors were encountered: