r11859: Canonicalize whitespace
[clsql.git] / db-oracle / oracle-package.lisp
index 2d78a05471b212d1fd2aa4bf5aed9c2a6d525268..462c8589afbe3897afd037c9d8f7678acc09eb14 100644 (file)
@@ -1,14 +1,25 @@
-;;; -*- Mode: Lisp -*-
-;;; $Id: oracle-package.lisp,v 1.1 2002/09/30 10:19:23 kevin Exp $
-;;;
-;;; This is copyrighted software.  See documentation for terms.
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          oracle-package.cl
+;;;; Purpose:       Package definition for CLSQL Oracle interface
+;;;;
+;;;; $Id$
+;;;;
+;;;; 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)
+(in-package #:cl-user)
 
-(defpackage :clsql-oracle
-  (:nicknames :oracle)
-  (:use :common-lisp :clsql-sys "ALIEN" "C-CALL" "SYSTEM")
+(defpackage #:clsql-oracle
+  (:use #:common-lisp #:clsql-sys #:clsql-uffi)
   (:export #:oracle-database
-          #:*oracle-so-load-path*
-          #:*oracle-so-libraries*)
+           #:*oracle-server-version*
+           #:*oracle-so-load-path*
+           #:*oracle-so-libraries*)
   (:documentation "This is the CLSQL interface to Oracle."))