r11657: 25 Apr 2007 Kevin Rosenberg <kevin@rosenberg.net>
[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 ;;;; $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 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20
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")
25
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"))