You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the link to the documentation section that needs improving? Errors
Describe the confusion
I'm currently building an API that uses node-oracledb. In my app, I'd like to know whether the error is caused by the data (ex: ORA-12899: value too large for column) or by a connectivity issue during runtime. I know there's a lot of error codes available, I found the documentation: https://docs.oracle.com/en/database/oracle/oracle-database/12.2/errmg/index.html
However, I can't find any documentation that tells which range of codes covers what type of error. Do I need to filter through the long list of error codes to identify which ones are for data error and connectivity error, or is there existing documentation or tool to achieve this?
Suggest changes that would help
It would be great if the documentation categorizes error codes or an additional field in the Error object that will identify the type of error.
The text was updated successfully, but these errors were encountered:
This is heavily dependent on Oracle Database, which doesn't provide a convenient list that I know of (e.g. nothing here). Some people try to maintain their own lists, e.g. this but there is no mechanism for Oracle DB maintainers to tell us all that they have introduced a new message in the database.
What is the link to the documentation section that needs improving?
Errors
Describe the confusion
I'm currently building an API that uses node-oracledb. In my app, I'd like to know whether the error is caused by the data (ex: ORA-12899: value too large for column) or by a connectivity issue during runtime. I know there's a lot of error codes available, I found the documentation: https://docs.oracle.com/en/database/oracle/oracle-database/12.2/errmg/index.html
However, I can't find any documentation that tells which range of codes covers what type of error. Do I need to filter through the long list of error codes to identify which ones are for data error and connectivity error, or is there existing documentation or tool to achieve this?
It would be great if the documentation categorizes error codes or an additional field in the Error object that will identify the type of error.
The text was updated successfully, but these errors were encountered: