X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=db-odbc%2Fodbc-package.lisp;fp=db-odbc%2Fodbc-package.lisp;h=a2b7b107c9fc6d5a46222606d14ff06db3889745;hb=2f1e9becafa048960362bd6f9bb0f327045807cd;hp=0000000000000000000000000000000000000000;hpb=8fb55434ea4d6e0a0775b0012c83a2b27061bb59;p=clsql.git diff --git a/db-odbc/odbc-package.lisp b/db-odbc/odbc-package.lisp new file mode 100644 index 0000000..a2b7b10 --- /dev/null +++ b/db-odbc/odbc-package.lisp @@ -0,0 +1,33 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: odbc-package.lisp +;;;; Purpose: Package definition for low-level ODBC interface +;;;; Author: Kevin M. Rosenberg +;;;; Created: April 2004 +;;;; +;;;; $Id: odbc-package.lisp 7061 2003-09-07 06:34:45Z kevin $ +;;;; +;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg +;;;; +;;;; CLSQL users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. +;;;; ************************************************************************* + +(in-package #:cl-user) + +(defpackage #:odbc + (:use #:cl #:clsql-uffi) + (:export + #:database-library-loaded + + #:connect + #:disconnect + #:query + #:execute + #:close-query + #:fetch-row + ) + (:documentation "This is the low-level interface ODBC."))