use md5sum-string instead of md5sum-sequence to adjust to upstream changes
[clsql.git] / db-odbc / odbc-package.lisp
index cd40c008fe9c93e4317f82a3578ac5213ac46aa6..40214eb795d4a8a41955825290dc25ad2cc66c33 100644 (file)
@@ -7,8 +7,6 @@
 ;;;; 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
 
 (defpackage #:odbc
   (:use #:cl #:uffi)
-  (:export 
+  (:export
      #:database-library-loaded
 
      #:*null*
-     #:*trace-sql*
+     #:+null-ptr+
      #:+max-precision+
+     #:*info-output*
+     #:*time-format*
      #:get-cast-long
      #:%free-statement
      #:%disconnect
      #:%rollback
      #:%sql-fetch
      #:%sql-cancel
+     #:db-connect
      #:%new-db-connection-handle
      #:%new-environment-handle
-     #:%sql-driver-connect
      #:%sql-connect
+     #:%sql-driver-connect
      #:disable-autocommit
      #:enable-autocommit
-     #:%null-ptr
      #:%sql-free-environment
      #:%sql-data-sources
      #:%sql-get-info
      #:query-database
      #:%new-statement-handle
      #:%sql-exec-direct
-     #:%put-str
+     #:result-columns-count
+     #:result-rows-count
+     #:sql-to-c-type
+     #:%list-tables
+     #:%table-statistics
+     #:%list-data-sources
      )
   (:documentation "This is the low-level interface ODBC."))