r9522: * sql/odbc-api.lisp: Update to using ODBC V3 protocol
[clsql.git] / db-odbc / odbc-sql.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          odbc-sql.cl
6 ;;;; Purpose:       Low-level interface for CLSQL ODBC 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 (defpackage #:clsql-odbc
20     (:use #:common-lisp #:clsql-sys)
21     (:export #:odbc-database)
22     (:documentation "This is the CLSQL interface to ODBC."))
23
24 (in-package #:clsql-odbc)
25
26 ;; ODBC interface
27
28 (defclass odbc-database (generic-odbc-database)
29   ((odbc-db-type :accessor database-odbc-db-type)))
30
31 (defmethod database-name-from-spec (connection-spec
32                                     (database-type (eql :odbc)))
33   (check-connection-spec connection-spec database-type (dsn user password))
34   (destructuring-bind (dsn user password) connection-spec
35     (declare (ignore password))
36     (concatenate 'string dsn "/" user)))
37
38 (defmethod database-connect (connection-spec (database-type (eql :odbc)))
39   (check-connection-spec connection-spec database-type (dsn user password))
40   (destructuring-bind (dsn user password) connection-spec
41     (handler-case
42         (let ((db (make-instance 'odbc-database
43                                  :name (database-name-from-spec connection-spec :odbc)
44                                  :database-type :odbc
45                                  :dbi-package (find-package '#:odbc-dbi)
46                                  :odbc-conn
47                                  (odbc-dbi:connect :user user
48                                                    :password password
49                                                    :data-source-name dsn))))
50           (store-type-of-connected-database db)
51           ;; Ensure this database type is initialized so can check capabilities of
52           ;; underlying database
53           (initialize-database-type :database-type db-type)
54           db)
55       (error ()         ;; Init or Connect failed
56         (error 'sql-connection-error
57                :database-type database-type
58                :connection-spec connection-spec
59                :message "Connection failed")))))
60
61 (defmethod database-underlying-type ((database odbc-database))
62   (database-odbc-db-type database))
63
64 (defun store-type-of-connected-database (db)
65   (let* ((odbc-conn (clsql-sys::odbc-conn db))
66          (server-name (odbc-dbi::get-odbc-info odbc-conn odbc::$SQL_SERVER_NAME))
67          (dbms-name (odbc-dbi::get-odbc-info odbc-conn odbc::$SQL_DBMS_NAME))
68          (type
69           ;; need SERVER-NAME and DBMS-NAME because many drivers mix this up
70           (cond 
71            ((or (search "postgresql" server-name :test #'char-equal)
72                 (search "postgresql" dbms-name :test #'char-equal))
73             :postgresql)
74            ((or (search "mysql" server-name :test #'char-equal)
75                 (search "mysql" dbms-name :test #'char-equal))
76             :mysql)
77            ((or (search "oracle" server-name :test #'char-equal)
78                 (search "oracle" dbms-name :test #'char-equal))
79             :oracle))))
80     (setf (database-odbc-db-type db) type)))
81   
82
83
84 (defmethod database-create (connection-spec (type (eql :odbc)))
85   (declare (ignore connection-spec))
86   (warn "Not implemented."))
87
88 (defmethod database-destroy (connection-spec (type (eql :odbc)))
89   (declare (ignore connection-spec))
90   (warn "Not implemented."))
91
92 (defmethod database-probe (connection-spec (type (eql :odbc)))
93   (when (find (car connection-spec) (database-list connection-spec type)
94               :test #'string-equal)
95     t))
96
97 (defmethod database-list (connection-spec (type (eql :odbc)))
98   (declare (ignore connection-spec))
99   (odbc-dbi:list-all-data-sources))
100
101 (defmethod database-list-indexes ((database odbc-database)
102                                   &key (owner nil))
103   (let ((result '()))
104     (dolist (table (database-list-tables database :owner owner) result)
105       (setq result
106         (append (database-list-table-indexes table database :owner owner)
107                 result)))))
108
109 (defmethod database-list-table-indexes (table (database odbc-database)
110                                         &key (owner nil))
111   (declare (ignore owner))
112   (multiple-value-bind (rows col-names)
113       (odbc-dbi:list-table-indexes 
114        table
115        :db (clsql-sys::odbc-conn database))
116     (declare (ignore col-names))
117     ;; INDEX_NAME is hard-coded in sixth position by ODBC driver
118     ;; FIXME: ??? is hard-coded in the fourth position
119     (do ((results nil)
120          (loop-rows rows (cdr loop-rows)))
121         ((null loop-rows) (nreverse results))
122       (let* ((row (car loop-rows))
123              (col (nth 5 row)))
124         (unless (find col results :test #'string-equal)
125           (push col results))))))
126
127 ;;; Database capabilities
128
129 (defmethod db-backend-has-create/destroy-db? ((db-type (eql :odbc)))
130   nil)
131
132
133 (defmethod database-initialize-database-type ((database-type (eql :odbc)))
134   ;; nothing to do
135   t)
136
137 (when (clsql-sys:database-type-library-loaded :odbc)
138   (clsql-sys:initialize-database-type :database-type :odbc))