summaryrefslogtreecommitdiff
path: root/db-oracle/oracle-package.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'db-oracle/oracle-package.lisp')
-rw-r--r--db-oracle/oracle-package.lisp23
1 files changed, 23 insertions, 0 deletions
diff --git a/db-oracle/oracle-package.lisp b/db-oracle/oracle-package.lisp
new file mode 100644
index 0000000..d5c229f
--- /dev/null
+++ b/db-oracle/oracle-package.lisp
@@ -0,0 +1,23 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name: oracle-package.cl
+;;;; Purpose: Package definition for CLSQL Oracle interface
+;;;;
+;;;; This file is part of CLSQL.
+;;;;
+;;;; CLSQL users are granted the rights to distribute and use this software
+;;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+;;;; *************************************************************************
+
+(in-package #:cl-user)
+
+(defpackage #:clsql-oracle
+ (:use #:common-lisp #:clsql-sys #:clsql-uffi)
+ (:export #:oracle-database
+ #:*oracle-server-version*
+ #:*oracle-so-load-path*
+ #:*oracle-so-libraries*)
+ (:documentation "This is the CLSQL interface to Oracle."))