database.minorErrorCode()

NES2+Syntax

							database.minorErrorCode()

Description

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

Example

Listing 8.47 shows how you would create a connection and test for a successful connection. If the test fails, the minorErrorCode() is used when writing the secondary error to the page.

Listing 8.47 Using minorErrorCode() to Retrieve a Secondary Database Connection Error
 <SERVER> // Open a connection var myConn = database.connect("ORACLE", "mySID", "myApp", "appsPWD", "myTNS"); if (myConn.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.