f00e0f213762720407703834250e9c67ba44f1fa
[clsql.git] / db-aodbc / aodbc-package.cl
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          aodbc-package.cl
6 ;;;; Purpose:       Package definition for CLSQL AODBC backend
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: aodbc-package.cl,v 1.1 2002/09/18 07:43:40 kevin Exp $
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20 (in-package :cl-user)
21
22 #+allegro 
23 (eval-when (:compile-toplevel :load-toplevel :execute) 
24   (require :aodbc-v2))
25 #-allegro (warn "This system requires Allegro's AODBC library to operate")
26
27 (defpackage :clsql-aodbc
28     (:nicknames :aodbc)
29     (:use :common-lisp :clsql-base-sys)
30     (:export #:aodbc-database)
31     (:documentation "This is the CLSQL interface to Allegro's AODBC"))