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