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 78e752d commit 7f3b9cfCopy full SHA for 7f3b9cf
pkg/client/errors/meta.go
@@ -28,7 +28,12 @@ const (
28
CodInvalidParameterValue Code = "22023"
29
CodUndefinedFunction Code = "42883"
30
CodInvalidDatabaseName Code = "3F000"
31
- CodNoSessionAuthDataProvided Code = "28000"
+ CodInvalidAuthorizationSpecification Code = "28000"
32
+ CodSqlserverRejectedEstablishmentOfSqlSession Code = "08001"
33
+ CodInvalidTransactionInitiation Code = "0B000"
34
CodInFailedSqlTransaction Code = "25P02"
35
CodIntegrityConstraintViolation Code = "23000"
36
+
37
+ // Backwards compatibility
38
+ CodNoSessionAuthDataProvided Code = CodInvalidAuthorizationSpecification
39
)
0 commit comments