mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-08 02:54:56 -06:00
.Sql: code 12571 (TNS packet writer error) added to 'connection broken' Oracle error codes
git-svn-id: svn://ultimatepp.org/upp/trunk@2379 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
9b4bd99c3b
commit
3dce2cc00e
1 changed files with 2 additions and 1 deletions
|
|
@ -534,7 +534,8 @@ Vector<String> OracleSchemaReservedWords()
|
|||
|
||||
Sql::ERRORCLASS OciErrorClass(int errcode)
|
||||
{
|
||||
return errcode == 3111 || errcode == 3113 || errcode == 3114 ? Sql::CONNECTION_BROKEN
|
||||
return errcode == 3111 || errcode == 3113 || errcode == 3114 || errcode == 12571
|
||||
? Sql::CONNECTION_BROKEN
|
||||
: Sql::ERROR_UNSPECIFIED;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue