swirl
Guide to OmniMark 9   OmniMark home
docs home 
IndexConceptsTasksSyntaxLibrariesLegacy LibrariesErrors
 
  Related Topics   Other Library Functions  
function  

db.open-oci8i

 
 

Library: Database access (OMDB)
Import: omdb.xmd
Return type: dbDatabase

Returns: A db.database object for the opened database connection.


Declaration

define external db.database function db.open-oci8i
          value string database_name

or

define external db.database function db.open-oci8i
          value string database-name
     user value string user-name
 password value string password

Argument definitions

database-name
is the name of the Oracle database to which you want to connect.
user-name
is the user name that will be supplied to the database when the connection is made.
password
is the password that will be supplied to the database when the connection is made.


Purpose

Use db.open-oci8i to create a connection to an Oracle database using an Oracle 8i client installation. The function returns a db.database OMX component.

Requirements

You must have an Oracle 8i (or higher) client installed on your machine, with SQL*NET configured to locate your Oracle server.

database-name must:

else external exception OMDB501 is thrown.

user-name and password are optional with default values of an empty string. Check what access requirements are needed for the specified database.

Usage Notes

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.

Example #1:

Create a connection to an Oracle 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"

    Related Topics
 
Other Library Functions
 
 

Top [ INDEX ] [ CONCEPTS ] [ TASKS ] [ SYNTAX ] [ LIBRARIES ] [ LEGACY LIBRARIES ] [ ERRORS ]

OmniMark 9.1.0 Documentation Generated: September 2, 2010 at 1:38:10 pm
If you have any comments about this section of the documentation, please use this form.

Copyright © Stilo International plc, 1988-2010.