Merge branch 'master' of git://git.b9.com/clsql
[clsql/s11.git] / db-aodbc / aodbc-package.lisp
blobd00e579e58ba6b2bbbeecea7f9adc286ab172584
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$
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 ;;;; *************************************************************************
19 (in-package #:cl-user)
21 #+allegro
22 (eval-when (:compile-toplevel :load-toplevel :execute)
23 (require :aodbc-v2))
24 #-allegro (warn "This system requires Allegro's AODBC library to operate")
26 (defpackage #:clsql-aodbc
27 (:nicknames #:aodbc)
28 (:use #:common-lisp #:clsql-sys)
29 (:export #:aodbc-database)
30 (:documentation "This is the CLSQL interface to Allegro's AODBC"))