Automated commit for debian release 6.7.2-1
[clsql.git] / db-aodbc / aodbc-package.lisp
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 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
11 ;;;;
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 ;;;; *************************************************************************
16
17 (in-package #:cl-user)
18
19 #+allegro
20 (eval-when (:compile-toplevel :load-toplevel :execute)
21   (require :aodbc-v2))
22 #-allegro (warn "This system requires Allegro's AODBC library to operate")
23
24 (defpackage #:clsql-aodbc
25     (:nicknames #:aodbc)
26     (:use #:common-lisp #:clsql-sys)
27     (:export #:aodbc-database)
28     (:documentation "This is the CLSQL interface to Allegro's AODBC"))