Oracle Objects for OLE
Release 8.1.7

Part Number A85257-01

Library

Product

Contents

Detection of Lost Connections

OO4O linked with the 8.1.6 client now supports detection of lost connections.

Applications can verify the status of the database connection by invoking the
ConnectionOK property of the OraDatabase object. OraSession.GetDatabaseFromPool now checks to see if the connection is alive before returning the OraDatabase to the application.

If the connection is dead,
GetDatabaseFromPool will drop the connection and refetch a live connection.

Example :

Dim MyDatabase As OraDatabase

Set MySession = CreateObject("OracleInProcServer.XOraSession")

Set MyDatabase = MySession.OpenDatabase("ora816", "scott/tiger", 0&)

'.... Other code

' Check if the database connection has not timed out

if MyDatabase.ConnectionOK

MsgBox " The database connection is valid"

endif


 
Oracle
Copyright copy; 1996-2000, Oracle Corporation.

All Rights Reserved.

Library

Product

Contents