X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=db-oracle%2Foracle-package.lisp;h=07f0a552a70fcd2550ac086e4c7cc09442223fd7;hb=d0b5c8c2a14929792d2d5818b57db27cae4484b2;hp=1dbbde9ee7f6bca6ef94f9b72beb98aad8ae86c2;hpb=bada52b7a8fd2cc484dee33cccd64ca09a52ec3d;p=clsql.git diff --git a/db-oracle/oracle-package.lisp b/db-oracle/oracle-package.lisp index 1dbbde9..07f0a55 100644 --- a/db-oracle/oracle-package.lisp +++ b/db-oracle/oracle-package.lisp @@ -1,14 +1,25 @@ -;;; -*- Mode: Lisp -*- -;;; $Id$ -;;; -;;; 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-server-version* #:*oracle-so-load-path* #:*oracle-so-libraries*) (:documentation "This is the CLSQL interface to Oracle."))