From c6fb3ef3ca0b79abd3d2e4ad6b8b29d8fe1b1324 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 27 May 2004 16:47:45 +0000 Subject: [PATCH] r9489: add oracle backend --- doc/appendix.xml | 67 +++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 63 insertions(+), 4 deletions(-) diff --git a/doc/appendix.xml b/doc/appendix.xml index 8ba1baf..16316b7 100644 --- a/doc/appendix.xml +++ b/doc/appendix.xml @@ -12,7 +12,7 @@ PostgreSQL Libraries - The PostgreSQL back-end needs access to the PostgreSQL C + The PostgreSQL back-end requires the PostgreSQL C client library (libpq.so). The location of this library is specified via *postgresql-so-load-path*, which defaults @@ -209,7 +209,7 @@ MySQL Libraries - The &mysql; back-end needs access to the &mysql; C + The &mysql; back-end requires the &mysql; C client library (libmysqlclient.so). The location of this library is specified via *mysql-so-load-path*, which defaults @@ -399,8 +399,8 @@ &sqlite; Libraries The &sqlite; back-end requires - access to the &sqlite; shared library file. Its default file - name is /usr/lib/libsqlite.so. + the &sqlite; shared library file. Its default file name is + /usr/lib/libsqlite.so. Initialization @@ -434,4 +434,63 @@ + + Oracle + + Libraries + The &oracle; back-end requires the &oracle; OCI client + library. (libclntsh.so). The location of + this library is specified relative to the + ORACLE_HOME value in the operating system + environment. &clsql; has tested sucessfully using the client + library from Oracle 9i and Oracle 10g server installations as + well as Oracle's 10g Instant Client library. + + + + Initialization + + Use + +(asdf:operate 'asdf:load-op 'clsql-oracle) + + to load the &oracle; back-end. The database type for the Oracle + back-end is :oracle. + + + + Connection Specification + + Syntax of connection-spec + (global-name user password) + + + Description of connection-spec + + + global-name + + String representing the global name of the Orace database. + This is looked up through the tnsnames.ora file. + + + + user + + String representing the user name to use for + authentication. + + + + password + + String representing the password to + use for authentication.. + + + + + + + -- 2.34.1