Oracle Objects for OLE C++ Class Library
Release 9.2

Part Number A95896-01
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents

Master Index

Feedback

Using the Connection Management Facility

Creating the Connection Pool

The Odatabase() method (OpenDatabase method) of the OSession object is used to establish a connection to an Oracle database. The Connection Pool in OO4O is a pool of ODatabase objects. The pool is created by invoking the CreateDatabasePool() method of the Osession() interface.

Obtaining and returning elements to and from the pool

To retrieve an ODatabase object from the pool, the GetDatabaseFromPool() method is called. This function returns a reference to an ODatabase object.

Destroying the pool

The pool is implicitly destroyed if the parent session object that it belong to is destroyed. It can also be destroyed at any time by invoking the DestroyDatabasePool() method.

Accessing the Pool attributes

The following are the Database Pool Properties. These properties are read-only.

long OSession::GetDbPoolMaxSize() const; // Maximum Pool Size

long OSession::GetDbPoolCurrentSize() const; // Current Size of the Pool

long OSession::GetDbPoolInitialSize() const; // Initial Size of the Pool

Doing Transaction processing using the Database from the Connection Pool

This is the recommended way of doing transactions:

Odb = OSession.GetDatabaseFromPool(10);

Oconn = Odb.GetConnection();

Oconn.BeginTransaction();

//Do processing here…

Oconn.Commit();


 
Oracle
Copyright © 1998, 2002 Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents

Master Index

Feedback