|
|||||
|
||||||
Related Syntax | Related Concepts | Other Library Functions |
function |
db.open-oci8i |
Library: Interfaces, Database access (OMDB)
Import: omdb.xmd |
Return type: dbDatabase Returns: A db.database object for the opened database connection. |
define external db.database function db.open-oci8i value stream database_name or define external db.database function db.open-oci8i value stream database-name user value stream user-name password value stream password
Argument definitions
Use db.open-oci8i to create a connection to an Oracle 8i (or higher) database. The function returns a db.database OMX component.
You must have an Oracle 8i (or higher) client installed on your machine, with SQL*NET configured to locate your Oracle 8i (or higher) server.
database-name must:
user-name and password are optional with default values of an empty string. Check what access requirements are needed for the specified database.
You must have declared an OMX db.database variable (either global or local) to reuse a database connection in other OMDB functions.
This function will throw external exception OMDB501 if there are any OCI errors. The exception will include any error numbers and descriptive text generated by the OCI. Consult your Oracle documentation for further details on the error condition.
Create a connection to an Oracle 8i (or higher) database named "DatabaseDemo" via OCI using username "charley" and password "chaplin". This connection can be reused in other OMDB functions.
import "omdb.xmd" prefixed by db. process local db.database my-database . . . set my-database to db.open-oci8i "DatabaseDemo" user "charley" password "chaplin"