r9388: * db-oracle/oracle-api: Add OCIServerVersion
[clsql.git] / sql / classes.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;;
4 ;;;; $Id$
5 ;;;;
6 ;;;; Classes defining SQL expressions and methods for formatting the
7 ;;;; appropriate SQL commands.
8 ;;;;
9 ;;;; This file is part of CLSQL.
10 ;;;;
11 ;;;; CLSQL users are granted the rights to distribute and use this software
12 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
13 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
14 ;;;; *************************************************************************
15
16 (in-package #:clsql-sys)
17
18 (defvar +empty-string+ "''")
19
20 (defvar +null-string+ "NULL")
21
22 (defvar *sql-stream* nil
23   "stream which accumulates SQL output")
24
25 (defun sql-output (sql-expr &optional database)
26   (progv '(*sql-stream*)
27       `(,(make-string-output-stream))
28     (output-sql sql-expr database)
29     (get-output-stream-string *sql-stream*)))
30
31
32 (defclass %sql-expression ()
33   ())
34
35 (defmethod output-sql ((expr %sql-expression) database)
36   (declare (ignore database))
37   (write-string +null-string+ *sql-stream*))
38
39 (defmethod print-object ((self %sql-expression) stream)
40   (print-unreadable-object
41    (self stream :type t)
42    (write-string (sql-output self) stream)))
43
44 ;; For straight up strings
45
46 (defclass sql (%sql-expression)
47   ((text
48     :initarg :string
49     :initform ""))
50   (:documentation "A literal SQL expression."))
51
52 (defmethod make-load-form ((sql sql) &optional environment)
53   (declare (ignore environment))
54   (with-slots (text)
55     sql
56     `(make-instance 'sql :string ',text)))
57
58 (defmethod output-sql ((expr sql) database)
59   (declare (ignore database))
60   (write-string (slot-value expr 'text) *sql-stream*)
61   t)
62
63 (defmethod print-object ((ident sql) stream)
64   (format stream "#<~S \"~A\">"
65           (type-of ident)
66           (sql-output ident nil)))
67
68 ;; For SQL Identifiers of generic type
69 (defclass sql-ident (%sql-expression)
70   ((name
71     :initarg :name
72     :initform "NULL"))
73   (:documentation "An SQL identifer."))
74
75 (defmethod make-load-form ((sql sql-ident) &optional environment)
76   (declare (ignore environment))
77   (with-slots (name)
78     sql
79     `(make-instance 'sql-ident :name ',name)))
80
81 (defvar *output-hash* (make-hash-table :test #'equal))
82
83 (defmethod output-sql-hash-key (expr database)
84   (declare (ignore expr database))
85   nil)
86
87 #+ignore
88 (defmethod output-sql :around ((sql t) database)
89   (let* ((hash-key (output-sql-hash-key sql database))
90          (hash-value (when hash-key (gethash hash-key *output-hash*))))
91     (cond ((and hash-key hash-value)
92            (write-string hash-value *sql-stream*))
93           (hash-key
94            (let ((*sql-stream* (make-string-output-stream)))
95              (call-next-method)
96              (setf hash-value (get-output-stream-string *sql-stream*))
97              (setf (gethash hash-key *output-hash*) hash-value))
98            (write-string hash-value *sql-stream*))
99           (t
100            (call-next-method)))))
101
102 (defmethod output-sql ((expr sql-ident) database)
103   (with-slots (name)
104       expr
105     (write-string
106      (convert-to-db-default-case 
107       (etypecase name
108         (string name)
109         (symbol (symbol-name name)))
110       database)
111      *sql-stream*))
112   t)
113
114 ;; For SQL Identifiers for attributes
115
116 (defclass sql-ident-attribute (sql-ident)
117   ((qualifier
118     :initarg :qualifier
119     :initform "NULL")
120    (type
121     :initarg :type
122     :initform "NULL")
123    (params
124     :initarg :params
125     :initform nil))
126   (:documentation "An SQL Attribute identifier."))
127
128 (defmethod collect-table-refs (sql)
129   (declare (ignore sql))
130   nil)
131
132 (defmethod collect-table-refs ((sql sql-ident-attribute))
133   (let ((qual (slot-value sql 'qualifier)))
134     (if (and qual (symbolp (slot-value sql 'qualifier)))
135         (list (make-instance 'sql-ident-table :name
136                              (slot-value sql 'qualifier))))))
137
138 (defmethod make-load-form ((sql sql-ident-attribute) &optional environment)
139   (declare (ignore environment))
140   (with-slots (qualifier type name)
141     sql
142     `(make-instance 'sql-ident-attribute :name ',name
143       :qualifier ',qualifier
144       :type ',type)))
145
146 (defmethod output-sql ((expr sql-ident-attribute) database)
147   (with-slots (qualifier name type params)
148       expr
149     (if (and (not qualifier) (not type))
150         (write-string (sql-escape (convert-to-db-default-case 
151                                    (symbol-name name) database)) *sql-stream*)
152         ;;; KMR: The TYPE field is used by CommonSQL for type conversion -- it
153       ;;; should not be output in SQL statements
154       #+ignore
155       (format *sql-stream* "~@[~A.~]~A~@[ ~A~]"
156               (when qualifier
157                 (convert-to-db-default-case (sql-escape qualifier) database))
158               (sql-escape (convert-to-db-default-case name database))
159               (when type
160                 (convert-to-db-default-case (symbol-name type) database)))
161       (format *sql-stream* "~@[~A.~]~A"
162               (when qualifier
163                 (typecase qualifier 
164                   (string (format nil "~s" qualifier))
165                   (t (convert-to-db-default-case (sql-escape qualifier) 
166                                                  database))))
167               (sql-escape (convert-to-db-default-case name database))))
168     t))
169
170 (defmethod output-sql-hash-key ((expr sql-ident-attribute) database)
171   (declare (ignore database))
172   (with-slots (qualifier name type params)
173     expr
174     (list 'sql-ident-attribute qualifier name type params)))
175
176 ;; For SQL Identifiers for tables
177 (defclass sql-ident-table (sql-ident)
178   ((alias
179     :initarg :table-alias :initform nil))
180   (:documentation "An SQL table identifier."))
181
182 (defmethod make-load-form ((sql sql-ident-table) &optional environment)
183   (declare (ignore environment))
184   (with-slots (alias name)
185     sql
186     `(make-instance 'sql-ident-table :name ',name :table-alias ',alias)))
187
188 (defun generate-sql (expr database)
189   (let ((*sql-stream* (make-string-output-stream)))
190     (output-sql expr database)
191     (get-output-stream-string *sql-stream*)))
192
193 (defmethod output-sql ((expr sql-ident-table) database)
194   (with-slots (name alias)
195     expr
196     (if (null alias)
197         (write-string (sql-escape (convert-to-db-default-case (symbol-name name) database)) *sql-stream*)
198         (progn
199           (write-string (sql-escape (convert-to-db-default-case (symbol-name name) database)) *sql-stream*)
200           (write-char #\Space *sql-stream*)
201           (format *sql-stream* "~s" alias))))
202   t)
203
204 #|
205 (defmethod database-output-sql ((self duration) database)
206   (declare (ignore database))
207   (format nil "'~a'" (duration-timestring self)))
208
209 (defmethod database-output-sql ((self money) database)
210   (database-output-sql (slot-value self 'odcl::units) database))
211 |#
212
213
214 (defmethod output-sql-hash-key ((expr sql-ident-table) database)
215   (declare (ignore database))
216   (with-slots (name alias)
217     expr
218     (list 'sql-ident-table name alias)))
219
220 (defclass sql-relational-exp (%sql-expression)
221   ((operator
222     :initarg :operator
223     :initform nil)
224    (sub-expressions
225     :initarg :sub-expressions
226     :initform nil))
227   (:documentation "An SQL relational expression."))
228
229 (defmethod collect-table-refs ((sql sql-relational-exp))
230   (let ((tabs nil))
231     (dolist (exp (slot-value sql 'sub-expressions))
232       (let ((refs (collect-table-refs exp)))
233         (if refs (setf tabs (append refs tabs)))))
234     (remove-duplicates tabs
235                        :test (lambda (tab1 tab2)
236                                (equal (slot-value tab1 'name)
237                                       (slot-value tab2 'name))))))
238
239
240
241
242 ;; Write SQL for relational operators (like 'AND' and 'OR').
243 ;; should do arity checking of subexpressions
244
245 (defmethod output-sql ((expr sql-relational-exp) database)
246   (with-slots (operator sub-expressions)
247     expr
248     (let ((subs (if (consp (car sub-expressions))
249                     (car sub-expressions)
250                     sub-expressions)))
251       (write-char #\( *sql-stream*)
252       (do ((sub subs (cdr sub)))
253           ((null (cdr sub)) (output-sql (car sub) database))
254         (output-sql (car sub) database)
255         (write-char #\Space *sql-stream*)
256         (output-sql operator database)
257         (write-char #\Space *sql-stream*))
258       (write-char #\) *sql-stream*)))
259   t)
260
261 (defclass sql-upcase-like (sql-relational-exp)
262   ()
263   (:documentation "An SQL 'like' that upcases its arguments."))
264   
265 ;; Write SQL for relational operators (like 'AND' and 'OR').
266 ;; should do arity checking of subexpressions
267   
268 (defmethod output-sql ((expr sql-upcase-like) database)
269   (flet ((write-term (term)
270            (write-string "upper(" *sql-stream*)
271            (output-sql term database)
272            (write-char #\) *sql-stream*)))
273     (with-slots (sub-expressions)
274       expr
275       (let ((subs (if (consp (car sub-expressions))
276                       (car sub-expressions)
277                       sub-expressions)))
278         (write-char #\( *sql-stream*)
279         (do ((sub subs (cdr sub)))
280             ((null (cdr sub)) (write-term (car sub)))
281           (write-term (car sub))
282           (write-string " LIKE " *sql-stream*))
283         (write-char #\) *sql-stream*))))
284   t)
285
286 (defclass sql-assignment-exp (sql-relational-exp)
287   ()
288   (:documentation "An SQL Assignment expression."))
289
290
291 (defmethod output-sql ((expr sql-assignment-exp) database)
292   (with-slots (operator sub-expressions)
293     expr
294     (do ((sub sub-expressions (cdr sub)))
295         ((null (cdr sub)) (output-sql (car sub) database))
296       (output-sql (car sub) database)
297       (write-char #\Space *sql-stream*)
298       (output-sql operator database)
299       (write-char #\Space *sql-stream*)))
300   t)
301
302 (defclass sql-value-exp (%sql-expression)
303   ((modifier
304     :initarg :modifier
305     :initform nil)
306    (components
307     :initarg :components
308     :initform nil))
309   (:documentation
310    "An SQL value expression.")
311   )
312
313 (defmethod collect-table-refs ((sql sql-value-exp))
314   (let ((tabs nil))
315     (if (listp (slot-value sql 'components))
316         (progn
317           (dolist (exp (slot-value sql 'components))
318             (let ((refs (collect-table-refs exp)))
319               (if refs (setf tabs (append refs tabs)))))
320           (remove-duplicates tabs
321                              :test (lambda (tab1 tab2)
322                                      (equal (slot-value tab1 'name)
323                                             (slot-value tab2 'name)))))
324         nil)))
325
326
327
328 (defmethod output-sql ((expr sql-value-exp) database)
329   (with-slots (modifier components)
330     expr
331     (if modifier
332         (progn
333           (write-char #\( *sql-stream*)
334           (output-sql modifier database)
335           (write-char #\Space *sql-stream*)
336           (output-sql components database)
337           (write-char #\) *sql-stream*))
338         (output-sql components database))))
339
340 (defclass sql-typecast-exp (sql-value-exp)
341   ()
342   (:documentation "An SQL typecast expression."))
343
344 (defmethod output-sql ((expr sql-typecast-exp) database)
345   (database-output-sql expr database))
346
347 (defmethod database-output-sql ((expr sql-typecast-exp) database)
348   (with-slots (components)
349     expr
350     (output-sql components database)))
351
352
353 (defmethod collect-table-refs ((sql sql-typecast-exp))
354   (when (slot-value sql 'components)
355     (collect-table-refs (slot-value sql 'components))))
356
357 (defclass sql-function-exp (%sql-expression)
358   ((name
359     :initarg :name
360     :initform nil)
361    (args
362     :initarg :args
363     :initform nil))
364   (:documentation
365    "An SQL function expression."))
366
367 (defmethod collect-table-refs ((sql sql-function-exp))
368   (let ((tabs nil))
369     (dolist (exp (slot-value sql 'components))
370       (let ((refs (collect-table-refs exp)))
371         (if refs (setf tabs (append refs tabs)))))
372     (remove-duplicates tabs
373                        :test (lambda (tab1 tab2)
374                                (equal (slot-value tab1 'name)
375                                       (slot-value tab2 'name))))))
376
377 (defmethod output-sql ((expr sql-function-exp) database)
378   (with-slots (name args)
379     expr
380     (output-sql name database)
381     (when args (output-sql args database)))
382   t)
383
384
385 (defclass sql-between-exp (sql-function-exp)
386   () 
387   (:documentation "An SQL between expression."))
388
389 (defmethod output-sql ((expr sql-between-exp) database)
390   (with-slots (name args)
391       expr 
392     (output-sql (first args) database)
393     (write-string " BETWEEN " *sql-stream*)
394     (output-sql (second args) database)
395     (write-string " AND " *sql-stream*)
396     (output-sql (third args) database))
397   t)
398
399 (defclass sql-query-modifier-exp (%sql-expression) 
400   ((modifier :initarg :modifier :initform nil)
401    (components :initarg :components :initform nil))
402   (:documentation "An SQL query modifier expression."))
403
404 (defmethod output-sql ((expr sql-query-modifier-exp) database)
405   (with-slots (modifier components)
406       expr
407     (output-sql modifier database)
408     (write-string " " *sql-stream*)
409     (output-sql (car components) database)
410     (when components 
411       (mapc #'(lambda (comp) 
412                 (write-string ", " *sql-stream*)
413                 (output-sql comp database))
414             (cdr components))))
415   t)
416
417 (defclass sql-set-exp (%sql-expression)
418   ((operator
419     :initarg :operator
420     :initform nil)
421    (sub-expressions
422     :initarg :sub-expressions
423     :initform nil))
424   (:documentation "An SQL set expression."))
425
426 (defmethod collect-table-refs ((sql sql-set-exp))
427   (let ((tabs nil))
428     (dolist (exp (slot-value sql 'sub-expressions))
429       (let ((refs (collect-table-refs exp)))
430         (if refs (setf tabs (append refs tabs)))))
431     (remove-duplicates tabs
432                        :test (lambda (tab1 tab2)
433                                (equal (slot-value tab1 'name)
434                                       (slot-value tab2 'name))))))
435
436 (defmethod output-sql ((expr sql-set-exp) database)
437   (with-slots (operator sub-expressions)
438       expr
439     (let ((subs (if (consp (car sub-expressions))
440                     (car sub-expressions)
441                     sub-expressions)))
442       (when (= (length subs) 1)
443         (output-sql operator database)
444         (write-char #\Space *sql-stream*))
445       (do ((sub subs (cdr sub)))
446           ((null (cdr sub)) (output-sql (car sub) database))
447         (output-sql (car sub) database)
448         (write-char #\Space *sql-stream*)
449         (output-sql operator database)
450         (write-char #\Space *sql-stream*))))
451   t)
452
453 (defclass sql-query (%sql-expression)
454   ((selections
455     :initarg :selections
456     :initform nil)
457    (all
458     :initarg :all
459     :initform nil)
460    (flatp
461     :initarg :flatp
462     :initform nil)
463    (set-operation
464     :initarg :set-operation
465     :initform nil)
466    (distinct
467     :initarg :distinct
468     :initform nil)
469    (from
470     :initarg :from
471     :initform nil)
472    (where
473     :initarg :where
474     :initform nil)
475    (group-by
476     :initarg :group-by
477     :initform nil)
478    (having
479     :initarg :having
480     :initform nil)
481    (limit
482     :initarg :limit
483     :initform nil)
484    (offset
485     :initarg :offset
486     :initform nil)
487    (order-by
488     :initarg :order-by
489     :initform nil)
490    (inner-join
491     :initarg :inner-join
492     :initform nil)
493    (on
494     :initarg :on
495     :initform nil))
496   (:documentation "An SQL SELECT query."))
497
498 (defclass sql-object-query (%sql-expression)
499   ((objects
500     :initarg :objects
501     :initform nil)
502    (flatp
503     :initarg :flatp
504     :initform nil)
505    (exp
506     :initarg :exp
507     :initform nil)
508    (refresh
509     :initarg :refresh
510     :initform nil)))
511
512 (defmethod collect-table-refs ((sql sql-query))
513   (remove-duplicates (collect-table-refs (slot-value sql 'where))
514                      :test (lambda (tab1 tab2)
515                              (equal (slot-value tab1 'name)
516                                     (slot-value tab2 'name)))))
517
518 (defvar *select-arguments*
519   '(:all :database :distinct :flatp :from :group-by :having :order-by
520     :set-operation :where :offset :limit :inner-join :on
521     ;; below keywords are not a SQL argument, but these keywords may terminate select
522     :caching :refresh))
523
524 (defun query-arg-p (sym)
525   (member sym *select-arguments*))
526
527 (defun query-get-selections (select-args)
528   "Return two values: the list of select-args up to the first keyword,
529 uninclusive, and the args from that keyword to the end."
530   (let ((first-key-arg (position-if #'query-arg-p select-args)))
531     (if first-key-arg
532         (values (subseq select-args 0 first-key-arg)
533                 (subseq select-args first-key-arg))
534         select-args)))
535
536 (defun make-query (&rest args)
537   (flet ((select-objects (target-args)
538            (and target-args
539                 (every #'(lambda (arg)
540                            (and (symbolp arg)
541                                 (find-class arg nil)))
542                        target-args))))
543     (multiple-value-bind (selections arglist)
544         (query-get-selections args)
545       (if (select-objects selections) 
546           (destructuring-bind (&key flatp refresh &allow-other-keys) arglist
547             (make-instance 'sql-object-query :objects selections
548                            :flatp flatp :refresh refresh
549                            :exp arglist))
550           (destructuring-bind (&key all flatp set-operation distinct from where
551                                     group-by having order-by 
552                                     offset limit inner-join on &allow-other-keys)
553               arglist
554             (if (null selections)
555                 (error "No target columns supplied to select statement."))
556             (if (null from)
557                 (error "No source tables supplied to select statement."))
558             (make-instance 'sql-query :selections selections
559                            :all all :flatp flatp :set-operation set-operation
560                            :distinct distinct :from from :where where
561                            :limit limit :offset offset
562                            :group-by group-by :having having :order-by order-by
563                            :inner-join inner-join :on on))))))
564
565 (defvar *in-subselect* nil)
566
567 (defmethod output-sql ((query sql-query) database)
568   (with-slots (distinct selections from where group-by having order-by
569                         limit offset inner-join on all set-operation) 
570       query
571     (when *in-subselect*
572       (write-string "(" *sql-stream*))
573     (write-string "SELECT " *sql-stream*)
574     (when all 
575       (write-string "ALL " *sql-stream*))
576     (when (and distinct (not all))
577       (write-string "DISTINCT " *sql-stream*)
578       (unless (eql t distinct)
579         (write-string "ON " *sql-stream*)
580         (output-sql distinct database)
581         (write-char #\Space *sql-stream*)))
582     (output-sql (apply #'vector selections) database)
583     (when from
584       (write-string " FROM " *sql-stream*)
585       (typecase from 
586         (list (output-sql (apply #'vector from) database))
587         (string (write-string 
588                  (sql-escape 
589                   (convert-to-db-default-case from database)) *sql-stream*))
590         (t (output-sql from database))))
591     (when inner-join
592       (write-string " INNER JOIN " *sql-stream*)
593       (output-sql inner-join database))
594     (when on
595       (write-string " ON " *sql-stream*)
596       (output-sql on database))
597     (when where
598       (write-string " WHERE " *sql-stream*)
599       (let ((*in-subselect* t))
600         (output-sql where database)))
601     (when group-by
602       (write-string " GROUP BY " *sql-stream*)
603       (output-sql group-by database))
604     (when having
605       (write-string " HAVING " *sql-stream*)
606       (output-sql having database))
607     (when order-by
608       (write-string " ORDER BY " *sql-stream*)
609       (if (listp order-by)
610           (do ((order order-by (cdr order)))
611               ((null order))
612             (let ((item (car order)))
613               (typecase item 
614                 (cons 
615                  (output-sql (car item) database)
616                  (format *sql-stream* " ~A" (cadr item)))
617                 (t 
618                  (output-sql item database)))
619               (when (cdr order)
620                 (write-char #\, *sql-stream*))))
621           (output-sql order-by database)))
622     (when limit
623       (write-string " LIMIT " *sql-stream*)
624       (output-sql limit database))
625     (when offset
626       (write-string " OFFSET " *sql-stream*)
627       (output-sql offset database))
628     (when *in-subselect*
629       (write-string ")" *sql-stream*))
630     (when set-operation 
631       (write-char #\Space *sql-stream*)
632       (output-sql set-operation database)))
633   t)
634
635 (defmethod output-sql ((query sql-object-query) database)
636   (declare (ignore database))
637   (with-slots (objects)
638       query
639     (when objects
640       (format *sql-stream* "(~{~A~^ ~})" objects))))
641
642
643 ;; INSERT
644
645 (defclass sql-insert (%sql-expression)
646   ((into
647     :initarg :into
648     :initform nil)
649    (attributes
650     :initarg :attributes
651     :initform nil)
652    (values
653     :initarg :values
654     :initform nil)
655    (query
656     :initarg :query
657     :initform nil))
658   (:documentation
659    "An SQL INSERT statement."))
660
661 (defmethod output-sql ((ins sql-insert) database)
662   (with-slots (into attributes values query)
663     ins
664     (write-string "INSERT INTO " *sql-stream*)
665     (output-sql into database)
666     (when attributes
667       (write-char #\Space *sql-stream*)
668       (output-sql attributes database))
669     (when values
670       (write-string " VALUES " *sql-stream*)
671       (output-sql values database))
672     (when query
673       (write-char #\Space *sql-stream*)
674       (output-sql query database)))
675   t)
676
677 ;; DELETE
678
679 (defclass sql-delete (%sql-expression)
680   ((from
681     :initarg :from
682     :initform nil)
683    (where
684     :initarg :where
685     :initform nil))
686   (:documentation
687    "An SQL DELETE statement."))
688
689 (defmethod output-sql ((stmt sql-delete) database)
690   (with-slots (from where)
691     stmt
692     (write-string "DELETE FROM " *sql-stream*)
693     (typecase from
694       (symbol (write-string (sql-escape from) *sql-stream*))
695       (t  (output-sql from database)))
696     (when where
697       (write-string " WHERE " *sql-stream*)
698       (output-sql where database)))
699   t)
700
701 ;; UPDATE
702
703 (defclass sql-update (%sql-expression)
704   ((table
705     :initarg :table
706     :initform nil)
707    (attributes
708     :initarg :attributes
709     :initform nil)
710    (values
711     :initarg :values
712     :initform nil)
713    (where
714     :initarg :where
715     :initform nil))
716   (:documentation "An SQL UPDATE statement."))
717
718 (defmethod output-sql ((expr sql-update) database)
719   (with-slots (table where attributes values)
720     expr
721     (flet ((update-assignments ()
722              (mapcar #'(lambda (a b)
723                          (make-instance 'sql-assignment-exp
724                                         :operator '=
725                                         :sub-expressions (list a b)))
726                      attributes values)))
727       (write-string "UPDATE " *sql-stream*)
728       (output-sql table database)
729       (write-string " SET " *sql-stream*)
730       (output-sql (apply #'vector (update-assignments)) database)
731       (when where
732         (write-string " WHERE " *sql-stream*)
733         (output-sql where database))))
734   t)
735
736 ;; CREATE TABLE
737
738 (defclass sql-create-table (%sql-expression)
739   ((name
740     :initarg :name
741     :initform nil)
742    (columns
743     :initarg :columns
744     :initform nil)
745    (modifiers
746     :initarg :modifiers
747     :initform nil)
748    (transactions
749     :initarg :transactions
750     :initform nil))
751   (:documentation
752    "An SQL CREATE TABLE statement."))
753
754 ;; Here's a real warhorse of a function!
755
756 (declaim (inline listify))
757 (defun listify (x)
758   (if (atom x)
759       (list x)
760       x))
761
762 (defmethod output-sql ((stmt sql-create-table) database)
763   (flet ((output-column (column-spec)
764            (destructuring-bind (name type &optional db-type &rest constraints)
765                column-spec
766              (let ((type (listify type)))
767                (output-sql name database)
768                (write-char #\Space *sql-stream*)
769                (write-string
770                 (if (stringp db-type) db-type ; override definition
771                     (database-get-type-specifier (car type) (cdr type) database))
772                 *sql-stream*)
773                (let ((constraints
774                       (database-constraint-statement constraints database)))
775                  (when constraints
776                    (write-string " " *sql-stream*)
777                    (write-string constraints *sql-stream*)))))))
778     (with-slots (name columns modifiers transactions)
779       stmt
780       (write-string "CREATE TABLE " *sql-stream*)
781       (output-sql name database)
782       (write-string " (" *sql-stream*)
783       (do ((column columns (cdr column)))
784           ((null (cdr column))
785            (output-column (car column)))
786         (output-column (car column))
787         (write-string ", " *sql-stream*))
788       (when modifiers
789         (do ((modifier (listify modifiers) (cdr modifier)))
790             ((null modifier))
791           (write-string ", " *sql-stream*)
792           (write-string (car modifier) *sql-stream*)))
793       (write-char #\) *sql-stream*)
794       (when (and (eq :mysql (database-underlying-type database))
795                  transactions
796                  (db-type-transaction-capable? :mysql database))
797         (write-string " Type=InnoDB" *sql-stream*)))) 
798   t)
799
800
801 ;; CREATE VIEW
802
803 (defclass sql-create-view (%sql-expression)
804   ((name :initarg :name :initform nil)
805    (column-list :initarg :column-list :initform nil)
806    (query :initarg :query :initform nil)
807    (with-check-option :initarg :with-check-option :initform nil))
808   (:documentation "An SQL CREATE VIEW statement."))
809
810 (defmethod output-sql ((stmt sql-create-view) database)
811   (with-slots (name column-list query with-check-option) stmt
812     (write-string "CREATE VIEW " *sql-stream*)
813     (output-sql name database)
814     (when column-list (write-string " " *sql-stream*)
815           (output-sql (listify column-list) database))
816     (write-string " AS " *sql-stream*)
817     (output-sql query database)
818     (when with-check-option (write-string " WITH CHECK OPTION" *sql-stream*))))
819
820
821 ;;
822 ;; Column constraint types
823 ;;
824 (defparameter *constraint-types*
825   (list 
826    (cons (symbol-name-default-case "NOT-NULL") "NOT NULL") 
827    (cons (symbol-name-default-case "PRIMARY-KEY") "PRIMARY KEY")))
828
829 ;;
830 ;; Convert type spec to sql syntax
831 ;;
832
833 (defmethod database-constraint-description (constraint database)
834   (declare (ignore database))
835   (let ((output (assoc (symbol-name constraint) *constraint-types*
836                        :test #'equal)))
837     (if (null output)
838         (error 'clsql-sql-syntax-error
839                :reason (format nil "unsupported column constraint '~a'"
840                                constraint))
841         (cdr output))))
842
843 (defmethod database-constraint-statement (constraint-list database)
844   (declare (ignore database))
845   (make-constraints-description constraint-list))
846   
847 (defun make-constraints-description (constraint-list)
848   (if constraint-list
849       (let ((string ""))
850         (do ((constraint constraint-list (cdr constraint)))
851             ((null constraint) string)
852           (let ((output (assoc (symbol-name (car constraint))
853                                *constraint-types*
854                                :test #'equal)))
855             (if (null output)
856                 (error 'clsql-sql-syntax-error
857                        :reason (format nil "unsupported column constraint '~a'"
858                                        constraint))
859                 (setq string (concatenate 'string string (cdr output))))
860             (if (< 1 (length constraint))
861                 (setq string (concatenate 'string string " "))))))))
862