Remove CVS $Id$ keyword
[clsql.git] / db-oracle / oracle-package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          oracle-package.cl
6 ;;;; Purpose:       Package definition for CLSQL Oracle interface
7 ;;;;
8 ;;;; This file is part of CLSQL.
9 ;;;;
10 ;;;; CLSQL users are granted the rights to distribute and use this software
11 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
12 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
13 ;;;; *************************************************************************
14
15 (in-package #:cl-user)
16
17 (defpackage #:clsql-oracle
18   (:use #:common-lisp #:clsql-sys #:clsql-uffi)
19   (:export #:oracle-database
20            #:*oracle-server-version*
21            #:*oracle-so-load-path*
22            #:*oracle-so-libraries*)
23   (:documentation "This is the CLSQL interface to Oracle."))