August 1999
Intermediate to advanced
1488 pages
72h 53m
English
connection.majorErrorMessage()
The majorErrorMessage() method of the Connection object contains the ODBC or database string error message that is returned if an error occurs.
Listing 8.18 shows how you would create a pool of connections, pull a connection from it, and test for the connection. If the test fails, the majorErrorMessage() is used when writing the error to the page.
<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. var myConn = myPool.connection('Employees', ... |
Read now
Unlock full access