|
||||||||||
|
|
||||||||||
| Related Syntax | Related Concepts | Other Library Functions | ||||||||
| function | dbOpenOCI8 |
Available in:
Professional Enterprise |
|
Library: omdb - high level database access
Include: omdb.xin |
Return type: dbDatabase Returns: A dbDatabase object for the opened database connection. |
define external dbDatabase function dbOpenOCI8
value stream database-name
or
define external dbDatabase function dbOpenOCI8
value stream database-name
user value stream user-name
password value stream password
where
Use dbOpenOCI8 to create a connection to an Oracle 8 (or higher) database. The function returns a dbDatabase OMX component.
You must include the following line at the beginning of your OmniMark program:
include "omdb.xin"
You must have an Oracle 8 (or higher) client installed on your machine, with SQL*NET configured to locate your Oracle 8 (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 dbDatabase 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 8 (or higher) database named "DatabaseDemo" via OCI using username "charley" and password "chaplin". This connection can be reused in other omdb functions.
include "omdb.xin"
process
local dbDatabase my-database
. . .
set my-database to dbOpenOCI8 "DatabaseDemo" user "charley" password "chaplin"
| ---- |