Connection.minorErrorMessage()

NES3+Syntax

							connection.minorErrorMessage()

Description

The minorErrorMessage() method of the Connection object contains the secondary ODBC or database string error message that is returned if an error occurs.

Example

Listing 8.20 shows how you would create a pool of connections, pull a connection from it, and test for the connection. If the test fails, the minorErrorMessage() is used when writing the secondary error to the page.

Listing 8.20 Using minorErrorMessage() to Retrieve a Secondary Database Connection Error
 <SERVER> // Create a pool of connections var myPool = new DbPool("ORACLE", "mySID", "myApp", "appsPWD", "myTNS"); // Open a connection from the pool. Give error if connection could // not be made. ...

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.