Oracle9i OLAP Developer's Guide to the OLAP API Release 2 (9.2) Part Number A95297-01 |
|
Connecting to a Data Store, 6 of 6
When you have completed your work with the data store, use the close
method on the JDBC Connection
object. In the following sample code, the Connection
object is called conn.
conn.close();
If you are finished using the OLAP API, but you want to continue working in your JDBC connection to the database, use the close
method on your DataProvider
to release the OLAP API resources. In the following example code, the DataProvider
is called dp
.
dp.close();
|
Copyright © 2000, 2002 Oracle Corporation. All Rights Reserved. |
|