DbPool.minorErrorCode()

NES3+Syntax

							DbPool.minorErrorCode()

Description

The minorErrorMessage() method of the DbPool object contains the secondary ODBC or database numeric error code that is returned if an error occurs.

Example

Listing 8.63 shows how to create a pool of connections and test for the connection. If the test fails, the minorErrorCode() method is used to write the secondary error to the page.

Listing 8.63 Using minorErrorCode() to Retrieve a Secondary Database Connection Error
 <SERVER> // Create a pool of connections var myPool = new DbPool("ORACLE", "mySID", "myApp", "appsPWD", "myTNS"); if (myPool.connected()) { // You are connected, so perform any tasks here }else{ // There was an error connecting to the database write('Error ...

Get Pure JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.