03ab9aafafc5b2b6e93ea16c67b98cb749b76b1c
[clsql.git] / doc / ref-ooddl.xml
1 <?xml version='1.0' ?>
2 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4 <!ENTITY % myents SYSTEM "entities.inc">
5 %myents;
6 ]>
7
8 <!-- Object Oriented Data Definition Language -->
9 <reference id="ref-ooddl">
10   <title>Object Oriented Data Definition Language (OODDL)</title>
11   <partintro>
12     <para>
13       The Object Oriented Data Definition Language (OODDL) provides
14       access to relational SQL tables using Common Lisp Object System
15       (CLOS) objects.  SQL tables are mapped to CLOS objects with the
16       SQL columns being mapped to slots of the CLOS object.
17     </para>
18     <para>
19       The mapping between SQL tables and CLOS objects is defined with
20       the macro <link
21       linkend="def-view-class"><function>def-view-class</function></link>. SQL
22       tables are created with <link
23       linkend="create-view-from-class"><function>create-view-from-class</function></link>
24       and SQL tables can be deleted with <link
25       linkend="drop-view-from-class"><function>drop-view-from-class</function></link>.
26     </para>
27     <note>
28       <para>The above functions refer to the Lisp
29       <emphasis>view</emphasis> of the SQL table. This Lisp view
30       should not be confused with SQL <function>VIEW</function>
31       statement.</para>
32     </note>
33   </partintro>
34
35   <refentry id="standard-db-object">
36     <refnamediv>
37       <refname>STANDARD-DB-OBJECT</refname>
38       <refpurpose>Superclass for all &clsql; View Classes.</refpurpose>
39       <refclass>Class</refclass>
40     </refnamediv>
41     <refsect1>
42       <title>Class Precedence List</title>
43       <para>
44         <simplelist type="inline">
45           <member><type>standard-db-object</type></member>
46           <member><type>standard-object</type></member>
47           <member><type>t</type></member>
48         </simplelist>
49       </para>
50     </refsect1>
51     <refsect1>
52       <title>Description</title> <para>This class is the superclass
53       of all &clsql; View Classes.</para>
54     </refsect1>
55     <refsect1>
56       <title>Class details</title>
57       <programlisting>(defclass STANDARD-DB-OBJECT ()(...))</programlisting>
58     </refsect1>
59     <refsect1>
60       <title>Slots</title>
61       <para>
62         <simplelist>
63           <member>slot VIEW-DATABASE is of type (OR NULL DATABASE)
64           which stores the associated database for the
65           instance.</member>
66         </simplelist>
67       </para>
68     </refsect1>
69   </refentry>
70
71   <refentry id="default-string-length">
72     <refnamediv>
73       <refname>*DEFAULT-STRING-LENGTH*</refname>
74       <refpurpose>Default length of SQL strings.</refpurpose>
75       <refclass>Variable</refclass>
76     </refnamediv>
77     <refsect1>
78       <title>Value Type</title>
79       <para>
80         Fixnum
81       </para>
82     </refsect1>
83     <refsect1>
84       <title>Initial Value</title>
85       <para><parameter>255</parameter></para>
86     </refsect1>
87     <refsect1>
88       <title>Description</title>
89       <para>
90         If a slot of a class defined by
91         <function>def-view-class</function> is of the type
92         <parameter>string</parameter> or
93         <parameter>varchar</parameter> and does not have a length
94         specified, then the value of this variable is used as SQL
95         length.
96       </para>
97     </refsect1>
98     <refsect1>
99       <title>Examples</title>
100       <screen>
101 (let ((*default-string-length* 80))
102   (def-view-class s80 ()
103     ((a :type string)
104      (b :type (string 80))
105      (c :type varchar))))
106 => #&lt;Standard-Db-Class S80 {480A431D}>
107
108 (create-view-from-class 's80)
109 =>
110 (table-exists-p [s80])
111 => T
112       </screen>
113       <para>
114         The above code causes a SQL table to be created with the SQL command
115       </para>
116       <screen>CREATE TABLE (A VARCHAR(80), B CHAR(80), C VARCHAR(80))</screen>
117     </refsect1>
118     <refsect1>
119       <title>Affected By</title>
120       <para>
121         Some SQL backends do not support
122         <parameter>varchar</parameter> lengths greater than 255.
123       </para>
124     </refsect1>
125     <refsect1>
126       <title>See Also</title>
127       <para>None.</para>
128     </refsect1>
129     <refsect1>
130       <title>Notes</title>
131       <para>This is a CLSQL extension to the CommonSQL API.</para>
132     </refsect1>
133   </refentry>
134
135   <refentry id="create-view-from-class">
136     <refnamediv>
137       <refname>CREATE-VIEW-FROM-CLASS</refname>
138       <refpurpose>Create a SQL table from a <glossterm linkend="gloss-view-class">View Class</glossterm>.</refpurpose>
139       <refclass>Function</refclass>
140     </refnamediv>
141     <refsect1>
142       <title>Syntax</title>
143       <synopsis>
144       <function>create-view-from-class</function> <replaceable>view-class-name</replaceable> &amp;key <replaceable>database</replaceable> <replaceable>transactions</replaceable> => <returnvalue><!-- no values --></returnvalue></synopsis>
145     </refsect1>
146     <refsect1>
147       <title>Arguments and Values</title>
148       <variablelist>
149         <varlistentry>
150           <term><parameter>view-class-name</parameter></term>
151           <listitem>
152             <para>
153               The name of a <glossterm linkend="gloss-view-class">View
154               Class</glossterm> that has been defined with <link
155               linkend="def-view-class"><function>def-view-class</function></link>.
156             </para>
157           </listitem>
158         </varlistentry>
159         <varlistentry>
160           <term><parameter>database</parameter></term>
161           <listitem>
162             <para>
163               The <glossterm
164               linkend="gloss-database-object">database</glossterm> in
165               which to create the SQL table. This will default to the
166               value of <symbol>*default-database*</symbol>.
167             </para>
168           </listitem>
169         </varlistentry>
170         <varlistentry>
171           <term><parameter>transactions</parameter></term>
172           <listitem>
173             <para>
174               When &nil; specifies that a table type which does not
175               support transactions should be used.
176             </para>
177           </listitem>
178         </varlistentry>
179       </variablelist>
180     </refsect1>
181     <refsect1>
182       <title>Description</title>
183       <para>
184         Creates a table as defined by the <glossterm
185         linkend="gloss-view-class">View Class</glossterm>
186         <parameter>view-class-name</parameter> in
187         <parameter>database</parameter>.
188       </para>
189     </refsect1>
190     <refsect1>
191       <title>Examples</title>
192       <screen>
193 (def-view-class foo () ((a :type (string 80))))
194 => #&lt;Standard-Db-Class FOO {4807F7CD}>
195 (create-view-from-class 'foo)
196 =>
197 (list-tables)
198 => ("FOO")
199       </screen>
200     </refsect1>
201     <refsect1>
202       <title>Side Effects</title>
203       <para>
204         Causes a table to be created in the SQL database.
205       </para>
206     </refsect1>
207     <refsect1>
208       <title>Affected by</title>
209       <para>
210         Most SQL database systems will signal an error if a table
211         creation is attempted when a table with the same name already
212         exists. The SQL user, as specified in the database connection,
213         must have sufficient permission for table creation.
214       </para>
215     </refsect1>
216     <refsect1>
217       <title>Exceptional Situations</title>
218       <para>
219         A condition will be signaled if the table can not be created
220         in the SQL database.
221       </para>
222     </refsect1>
223     <refsect1>
224       <title>See Also</title>
225       <para>
226         <simplelist>
227           <member><link linkend="def-view-class"><function>def-view-class</function></link></member>
228           <member><link linkend="drop-view-from-class"><function>drop-view-from-class</function></link></member>
229         </simplelist>
230       </para>
231     </refsect1>
232     <refsect1>
233       <title>Notes</title>
234       <para>
235         Currently, only &mysql; supports transactionless
236         tables. &clsql; provides the ability to create such tables for
237         applications which would benefit from faster table access and
238         do not require transaction support.
239       </para>
240       <para>
241         The case of the table name is determined by the type of the
242         database. &mysql;, for example, creates databases in upper-case
243         while &postgresql; uses lowercase.
244       </para>
245     </refsect1>
246   </refentry>
247
248   <refentry id="def-view-class">
249     <refnamediv>
250       <refname>DEF-VIEW-CLASS</refname>
251       <refpurpose>Defines CLOS classes with mapping to SQL database.</refpurpose>
252       <refclass>Macro</refclass>
253     </refnamediv>
254     <refsect1>
255       <title>Syntax</title>
256       <synopsis>
257       <function>def-view-class</function> <replaceable>name</replaceable> <replaceable>superclasses</replaceable> <replaceable>slots</replaceable> &amp;rest <replaceable>class-options</replaceable> => <returnvalue>class</returnvalue></synopsis>
258     </refsect1>
259     <refsect1>
260       <title>Arguments and Values</title>
261       <variablelist>
262         <varlistentry>
263           <term><parameter>name</parameter></term>
264           <listitem>
265             <para>
266               The class name.
267             </para>
268           </listitem>
269         </varlistentry>
270         <varlistentry>
271           <term><parameter>superclasses</parameter></term>
272           <listitem>
273             <para>
274               The superclasses for the defined class.
275             </para>
276           </listitem>
277         </varlistentry>
278         <varlistentry>
279           <term><parameter>slots</parameter></term>
280           <listitem>
281             <para>
282               The class slot definitions.
283             </para>
284           </listitem>
285         </varlistentry>
286         <varlistentry>
287           <term><parameter>class options</parameter></term>
288           <listitem>
289             <para>
290               The class options.
291             </para>
292           </listitem>
293         </varlistentry>
294         <varlistentry>
295           <term><parameter>class</parameter></term>
296           <listitem>
297             <para>
298               The defined class.
299             </para>
300           </listitem>
301         </varlistentry>
302       </variablelist>
303     </refsect1>
304     <refsect1>
305       <title>Slot Options</title>
306       <itemizedlist>
307         <listitem>
308           <para>
309             <parameter>:db-kind</parameter> - specifies the kind of
310             database mapping which is performed for this slot and
311             defaults to <parameter>:base</parameter> which indicates
312             that the slot maps to an ordinary column of the database
313             table. A <parameter>:db-kind</parameter> value of
314             <parameter>:key</parameter> indicates that this slot is a
315             special kind of <parameter>:base</parameter> slot which
316             maps onto a column which is one of the unique keys for the
317             database table, the value <parameter>:join</parameter>
318             indicates this slot represents a join onto another
319             <glossterm linkend="gloss-view-class">View Class</glossterm>
320             which contains View Class objects, and the value
321             <parameter>:virtual</parameter> indicates a standard CLOS
322             slot which does not map onto columns of the database
323             table.
324           </para>
325         </listitem>
326         <listitem>
327           <para>
328             <parameter>:db-info</parameter> - if a slot is specified
329             with <parameter>:db-kind</parameter>
330             <parameter>:join</parameter>, the slot option
331             <parameter>:db-info</parameter> contains a property list
332             which specifies the nature of the join. The valid members
333             of the list are:
334           </para>
335           <itemizedlist>
336             <listitem>
337               <para>
338                 <parameter>:join-class</parameter>
339                 <emphasis>class-name</emphasis> - the name of the
340                 class to join on.
341               </para>
342             </listitem>
343             <listitem>
344               <para>
345                 <parameter>:home-key</parameter>
346                 <emphasis>slot-name</emphasis> - the name of the slot
347                 of this class for joining
348               </para>
349             </listitem>
350             <listitem>
351               <para>
352                 <parameter>:foreign-key</parameter>
353                 <emphasis>slot-name</emphasis> - the name of the slot
354                 of the <parameter>:join-class</parameter> for joining
355               </para>
356             </listitem>
357             <listitem>
358               <para>
359                 <parameter>:target-slot</parameter>
360                 <emphasis>target-slot</emphasis> - this is an optional
361                 parameter. If specified, then the join slot of the
362                 defining class will contain instances of this target
363                 slot rather than of the join class. This can be useful
364                 when the <parameter>:join-class</parameter> is an
365                 intermediate class in a
366                 <emphasis>many-to-many</emphasis> relationship and the
367                 application is actually interested in the
368                 <parameter>:target-slot</parameter>.
369               </para>
370             </listitem>
371             <listitem>
372               <para>
373                 <parameter>:retrieval</parameter>
374                 <emphasis>time</emphasis> - The default value is
375                 <parameter>:deferred</parameter>, which defers filling
376                 this slot until the value is accessed. The other valid
377                 value is <parameter>:immediate</parameter> which
378                 performs the SQL query when the instance of the class
379                 is created. In this case, the
380                 <parameter>:set</parameter> is automatically set to
381                 &nil;
382               </para>
383             </listitem>
384             <listitem>
385               <para>
386                 <parameter>:set</parameter> <emphasis>set</emphasis> -
387                 This controls what is stored in the join slot.  The
388                 default value is &t;. When <emphasis>set</emphasis> is
389                 &t; and <emphasis>target-slot</emphasis> is undefined,
390                 the join slot will contain a list of instances of the
391                 join class. Whereas, if
392                 <emphasis>target-slot</emphasis> is defined, then the
393                 join slot will contain a list of pairs of
394                 <emphasis>(target-value join-instance)</emphasis>.
395                 When <emphasis>set</emphasis> is &nil;, the join slot
396                 will contain a single instances.
397               </para>
398             </listitem>
399           </itemizedlist>
400         </listitem>
401         <listitem>
402           <para>
403             <parameter>:type</parameter> - for slots of
404             <parameter>:db-kind</parameter> <parameter>:base</parameter> or
405             <parameter>:key</parameter>, the <parameter>:type</parameter> slot
406             option has a special interpretation such that Lisp
407             types, such as string, integer and float are
408             automatically converted into appropriate SQL types for
409             the column onto which the slot maps. This behaviour may
410             be overridden using the <parameter>:db-type</parameter> slot
411             option. The valid values are:
412             <simplelist>
413               <member>
414                 <parameter>string</parameter> - a variable length
415                 character field up to <link
416                 linkend="default-string-length">*default-string-length*</link>
417                 characters.
418               </member>
419               <member>
420                 <parameter>(string n)</parameter> - a fixed length
421                 character field <parameter>n</parameter> characters
422                 long.
423               </member>
424               <member>
425                 <parameter>varchar</parameter> - a variable length
426                 character field up to <link
427                 linkend="default-string-length">*default-string-length*</link>
428                 characters.
429               </member>
430               <member>
431                 <parameter>(varchar n)</parameter> - a variable length
432                 character field up to <parameter>n</parameter>
433                 characters in length.
434               </member>
435               <member>
436                 <parameter>char</parameter> - a single character field
437               </member>
438               <member><parameter>integer</parameter> - signed integer
439               at least 32-bits wide</member>
440               <member><parameter>(integer n)</parameter></member>
441               <member><parameter>float</parameter></member>
442               <member><parameter>(float n)</parameter></member>
443               <member><parameter>long-float</parameter></member>
444               <member><parameter>number</parameter></member>
445               <member><parameter>(number n)</parameter></member>
446               <member><parameter>(number n p)</parameter></member>
447               <member>
448                 <parameter>tinyint</parameter> - An integer column 8-bits
449                 wide. [not supported by all database backends]
450               </member>
451               <member>
452                 <parameter>smallint</parameter> - An integer column 16-bits
453                 wide. [not supported by all database backends]
454               </member>
455               <member>
456                 <parameter>bigint</parameter> - An integer column
457                 64-bits wide. [not supported by all database backends]
458               </member>
459               <member>
460                 <parameter>universal-time</parameter> - an integer
461                 field sufficiently wide to store a
462                 universal-time. On most databases, a slot of this
463                 type assigned a SQL type of
464                 <parameter>BIGINT</parameter>
465               </member>
466               <member>
467                 <parameter>wall-time</parameter> - a slot which stores
468                 a date and time in a SQL timestamp column. &clsql;
469                 provides a number of time manipulation functions to
470                 support objects of type <type>wall-time</type>.
471               </member>
472               <member>
473                 <parameter>date</parameter> - a slot which stores the
474                 date (without any time of day resolution) in a
475                 column. &clsql; provides a number of time
476                 manipulation functions that operate on date values.
477               </member>
478               <member>
479                 <parameter>duration</parameter> - stores a
480                 <type>duration</type> structure.  &clsql; provides
481                 routines for <type>wall-time</type> and
482                 <type>duration</type> processing.
483               </member>
484               <member><parameter>boolean</parameter> - stores a &t; or
485               &nil; value.</member>
486               <member>
487                 <parameter>generalized-boolean</parameter> - similar
488                 to a <parameter>boolean</parameter> in that either a
489                 &t; or &nil; value is stored in the SQL
490                 database. However, any Lisp object can be stored in
491                 the Lisp object. A Lisp value of &nil; is stored as
492                 <constant>FALSE</constant> in the database, any
493                 other Lisp value is stored as
494                 <constant>TRUE</constant>.
495               </member>
496               <member>
497                 <parameter>keyword</parameter> - stores a keyword
498               </member>
499               <member><parameter>symbol</parameter> - stores a symbol</member>
500               <member>
501                 <parameter>list</parameter> - stores a list by writing
502                 it to a string. The items in the list must be able to
503                 be readable written.
504               </member>
505               <member><parameter>vector</parameter> - stores a vector
506               similarly to <parameter>list</parameter></member>
507               <member><parameter>array</parameter> - stores a array
508               similarly to <parameter>list</parameter></member>
509             </simplelist>
510           </para>
511
512         </listitem>
513         <listitem>
514           <para>
515             <parameter>:column</parameter> - specifies the name of
516             the SQL column which the slot maps onto, if
517             <parameter>:db-kind</parameter> is not
518             <parameter>:virtual</parameter>, and defaults to the
519             slot name. If the slot name is used for the SQL column
520             name, any hypens in the slot name are converted
521             to underscore characters.
522           </para>
523         </listitem>
524         <listitem>
525           <para>
526             <parameter>:void-value</parameter> - specifies the value
527             to store in the Lisp instance if the SQL value is NULL and
528             defaults to NIL.
529           </para>
530         </listitem>
531         <listitem>
532           <para>
533             <parameter>:db-constraints</parameter> - is a keyword
534             symbol representing an SQL column constraint expression or
535             a list of such symbols. The following column constraints
536             are supported: <symbol>:not-null</symbol>,
537             <symbol>:primary-key</symbol>, <symbol>:unique</symbol>,
538             <symbol>:unsigned</symbol> (&mysql; specific),
539             <symbol>:zerofill</symbol> (&mysql; specific) and
540             <symbol>:auto-increment</symbol> (&mysql; specific).
541           </para>
542         </listitem>
543         <listitem>
544           <para>
545             <parameter>:db-type</parameter> - a string to specify the SQL
546             column type. If specified, this string overrides the SQL
547             column type as computed from the <parameter>:type</parameter>
548             slot value.
549           </para>
550         </listitem>
551         <listitem>
552           <para>
553             <parameter>:db-reader</parameter> - If a string, then when
554             reading values from the database, the string will be used
555             for a format string, with the only value being the value
556             from the database.  The resulting string will be used as
557             the slot value.  If a function then it will take one
558             argument, the value from the database, and return the
559             value that should be put into the slot. If a symbol, then
560             the symbol-function of the symbol will be used.
561           </para>
562         </listitem>
563         <listitem>
564           <para>
565             <parameter>:db-writer</parameter> - If a string, then when
566             reading values from the slot for the database, the string
567             will be used for a format string, with the only value
568             being the value of the slot.  The resulting string will be
569             used as the column value in the database.  If a function
570             then it will take one argument, the value of the slot, and
571             return the value that should be put into the database. If
572             a symbol, then the symbol-function of the symbol will be
573             used.
574           </para>
575         </listitem>
576       </itemizedlist>
577     </refsect1>
578     <refsect1>
579       <title>Class Options</title>
580       <para>
581         <itemizedlist>
582           <listitem>
583             <para>
584               <parameter>:base-table</parameter> - specifies the name
585               of the SQL database table. The default value is the
586               class name. Like slot names, hypens in the class name
587               are converted to underscore characters.
588             </para>
589           </listitem>
590           <listitem>
591             <para>
592               <parameter>:normalizedp</parameter> - specifies whether
593           this class uses normalized inheritance from parent classes.
594           Defaults to nil, i.e. non-normalized schemas. When true,
595           SQL database tables that map to this class and parent
596           classes are joined on their primary keys to get the full
597           set of database columns for this class.
598             </para>
599           </listitem>
600         </itemizedlist>
601       </para>
602     </refsect1>
603     <refsect1>
604       <title>Description</title>
605       <para>
606         Creates a <glossterm linkend="gloss-view-class">View
607         Class</glossterm> called <parameter>name</parameter> whose
608         slots <parameter>slots</parameter> can map onto the attributes
609         of a table in a database. If
610         <parameter>superclasses</parameter> is &nil; then the
611         superclass of <parameter>class</parameter> will be
612         <parameter>standard-db-object</parameter>, otherwise
613         <parameter>superclasses</parameter> is a list of superclasses
614         for <parameter>class</parameter> which must include
615         <parameter>standard-db-object</parameter> or a descendent of
616         this class.
617       </para>
618
619       <refsect2>
620       <title>Normalized inheritance schemas</title>
621       <para>
622     Specifying that <symbol>:normalizedp</symbol> is <symbol>T</symbol>
623     tells &clsql; to normalize the database schema for inheritance.
624     What this means is shown in the examples below.
625       </para>
626
627       <para>
628     With <symbol>:normalizedp</symbol> equal to <symbol>NIL</symbol>
629     (the default) the class inheritance would result in the following:
630       </para>
631       <screen>
632 (def-view-class node ()
633   ((title :accessor title :initarg :title :type (varchar 240))))
634
635 SQL table NODE:
636 +-------+--------------+------+-----+---------+-------+
637 | Field | Type         | Null | Key | Default | Extra |
638 +-------+--------------+------+-----+---------+-------+
639 | TITLE | varchar(240) | YES  |     | NULL    |       |
640 +-------+--------------+------+-----+---------+-------+
641
642 (def-view-class user (node)
643   ((user-id :accessor user-id :initarg :user-id
644             :type integer :db-kind :key :db-constraints (:not-null))
645    (nick :accessor nick :initarg :nick :type (varchar 64))))
646
647 SQL table USER:
648 +---------+--------------+------+-----+---------+-------+
649 | Field   | Type         | Null | Key | Default | Extra |
650 +---------+--------------+------+-----+---------+-------+
651 | USER_ID | int(11)      | NO   | PRI |         |       |
652 | NICK    | varchar(64)  | YES  |     | NULL    |       |
653 | TITLE   | varchar(240) | YES  |     | NULL    |       |
654 +---------+--------------+------+-----+---------+-------+
655       </screen>
656
657       <para>
658     Using <symbol>:normalizedp</symbol> <symbol>T</symbol>, both
659     view-classes need a primary key to join them on:
660       </para>
661       <screen>
662 (def-view-class node ()
663   ((node-id :accessor node-id :initarg :node-id
664             :type integer :db-kind :key
665             :db-constraints (:not-null))
666    (title :accessor title :initarg :title :type (varchar 240))))
667
668 SQL table NODE:
669 +---------+--------------+------+-----+---------+-------+
670 | Field   | Type         | Null | Key | Default | Extra |
671 +---------+--------------+------+-----+---------+-------+
672 | NODE_ID | int(11)      | NO   | PRI |         |       |
673 | TITLE   | varchar(240) | YES  |     | NULL    |       |
674 +---------+--------------+------+-----+---------+-------+
675
676 (def-view-class user (node)
677   ((user-id :accessor user-id :initarg :user-id
678             :type integer :db-kind :key :db-constraints (:not-null))
679    (nick :accessor nick :initarg :nick :type (varchar 64)))
680   (:normalizedp t))
681
682 SQL table USER:
683 +---------+-------------+------+-----+---------+-------+
684 | Field   | Type        | Null | Key | Default | Extra |
685 +---------+-------------+------+-----+---------+-------+
686 | USER_ID | int(11)     | NO   | PRI |         |       |
687 | NICK    | varchar(64) | YES  |     | NULL    |       |
688 +---------+-------------+------+-----+---------+-------+
689       </screen>
690
691       <para>
692         In this second case, all slots of the view-class 'node
693         are also available in view-class 'user, and can be used
694         as one would expect. For example, with the above normalized
695         view-classes 'node and 'user, and SQL tracing turned on:
696       </para>
697       <screen>
698 CLSQL> (setq test-user (make-instance 'user :node-id 1 :nick "test-user"
699                                             :title "This is a test user"))
700 <![CDATA[#<USER {1003B392E1}>]]>
701
702 CLSQL> (update-records-from-instance test-user :database db)
703 <![CDATA[
704 ;; .. => INSERT INTO NODE (NODE_ID,TITLE) VALUES (1,'This is a test user')
705 ;; .. <= T
706 ;; .. => INSERT INTO USER (USER_ID,NICK) VALUES (1,'test-user')
707 ;; .. <= T
708 1
709 ]]>
710
711 CLSQL> (node-id test-user)
712 1
713
714 CLSQL> (title test-user)
715 "This is a test user"
716
717 CLSQL> (nick test-user)
718 "test-user"
719       </screen>
720       </refsect2>
721     </refsect1>
722     <refsect1>
723       <title>Examples</title>
724       <para>
725         The following examples are from the &clsql; test suite.
726       </para>
727       <screen>
728 (def-view-class person (thing)
729   ((height :db-kind :base :accessor height :type float
730            :initarg :height)
731    (married :db-kind :base :accessor married :type boolean
732             :initarg :married)
733    (birthday :type clsql:wall-time :initarg :birthday)
734    (bd-utime :type clsql:universal-time :initarg :bd-utime)
735    (hobby :db-kind :virtual :initarg :hobby :initform nil)))
736
737 (def-view-class employee (person)
738   ((emplid
739     :db-kind :key
740     :db-constraints :not-null
741     :type integer
742     :initarg :emplid)
743    (groupid
744     :db-kind :key
745     :db-constraints :not-null
746     :type integer
747     :initarg :groupid)
748    (first-name
749     :accessor first-name
750     :type (varchar 30)
751     :initarg :first-name)
752    (last-name
753     :accessor last-name
754     :type (varchar 30)
755     :initarg :last-name)
756    (email
757     :accessor employee-email
758     :type (varchar 100)
759     :initarg :email)
760    (ecompanyid
761     :type integer
762     :initarg :companyid)
763    (company
764     :accessor employee-company
765     :db-kind :join
766     :db-info (:join-class company
767                           :home-key ecompanyid
768                           :foreign-key companyid
769                           :set nil))
770    (managerid
771     :type integer
772     :initarg :managerid)
773    (manager
774     :accessor employee-manager
775     :db-kind :join
776     :db-info (:join-class employee
777                           :home-key managerid
778                           :foreign-key emplid
779                           :set nil))
780    (addresses
781     :accessor employee-addresses
782     :db-kind :join
783     :db-info (:join-class employee-address
784                           :home-key emplid
785                           :foreign-key aemplid
786                           :target-slot address
787                           :set t)))
788   (:base-table employee))
789
790 (def-view-class company ()
791   ((companyid
792     :db-kind :key
793     :db-constraints :not-null
794     :type integer
795     :initarg :companyid)
796    (groupid
797     :db-kind :key
798     :db-constraints :not-null
799     :type integer
800     :initarg :groupid)
801    (name
802     :type (varchar 100)
803     :initarg :name)
804    (presidentid
805     :type integer
806     :initarg :presidentid)
807    (president
808     :reader president
809     :db-kind :join
810     :db-info (:join-class employee
811                           :home-key presidentid
812                           :foreign-key emplid
813                           :set nil))
814    (employees
815     :reader company-employees
816     :db-kind :join
817     :db-info (:join-class employee
818                           :home-key (companyid groupid)
819                           :foreign-key (ecompanyid groupid)
820                           :set t))))
821
822 (def-view-class address ()
823   ((addressid
824     :db-kind :key
825     :db-constraints :not-null
826     :type integer
827     :initarg :addressid)
828    (street-number
829     :type integer
830     :initarg :street-number)
831    (street-name
832     :type (varchar 30)
833     :void-value ""
834     :initarg :street-name)
835    (city
836     :column "city_field"
837     :void-value "no city"
838     :type (varchar 30)
839     :initarg :city)
840    (postal-code
841     :column zip
842     :type integer
843     :void-value 0
844     :initarg :postal-code))
845   (:base-table addr))
846
847 ;; many employees can reside at many addressess
848 (def-view-class employee-address ()
849   ((aemplid :type integer :initarg :emplid)
850    (aaddressid :type integer :initarg :addressid)
851    (verified :type boolean :initarg :verified)
852    (address :db-kind :join
853             :db-info (:join-class address
854                                   :home-key aaddressid
855                                   :foreign-key addressid
856                                   :retrieval :immediate)))
857   (:base-table "ea_join"))
858
859 (def-view-class deferred-employee-address ()
860   ((aemplid :type integer :initarg :emplid)
861    (aaddressid :type integer :initarg :addressid)
862    (verified :type boolean :initarg :verified)
863    (address :db-kind :join
864             :db-info (:join-class address
865                                   :home-key aaddressid
866                                   :foreign-key addressid
867                                   :retrieval :deferred
868                                   :set nil)))
869   (:base-table "ea_join"))
870       </screen>
871     </refsect1>
872     <refsect1>
873       <title>Side Effects</title>
874       <para>Creates a new CLOS class.</para>
875     </refsect1>
876     <refsect1>
877       <title>Affected by</title>
878       <para>
879         Nothing.
880       </para>
881     </refsect1>
882     <refsect1>
883       <title>Exceptional Situations</title>
884       <para>
885         None.
886       </para>
887     </refsect1>
888     <refsect1>
889       <title>See Also</title>
890       <para>
891         <simplelist>
892           <member><link linkend="create-view-from-class"><function>create-view-from-class</function></link></member>
893           <member><link linkend="standard-db-object"><parameter>standard-db-object</parameter></link></member>
894           <member><link linkend="drop-view-from-class"><function>drop-view-from-class</function></link></member>
895         </simplelist>
896       </para>
897     </refsect1>
898     <refsect1>
899       <title>Notes</title>
900       <para>
901         The actual SQL type for a column depends up the database type
902         in which the SQL table is stored. As an example, the view
903         class type <parameter>(varchar 100)</parameter> specifies a
904         SQL column type <parameter>VARCHAR(100)</parameter> in &mysql;
905         and a column type <parameter>VARCHAR2(100)</parameter> in
906         &oracle;
907       </para>
908       <para>
909         The actual lisp type for a slot may be different than the
910         value specified by the <parameter>:type</parameter> attribute.
911         For example, a slot declared with "<parameter>:type (string
912         30)</parameter>" actually sets the slots Lisp type as
913         <parameter>(or null string)</parameter>. This is to allow a
914         &nil; value or a string shorter than 30 characters to be
915         stored in the slot.
916       </para>
917     </refsect1>
918   </refentry>
919
920   <refentry id="drop-view-from-class">
921     <refnamediv>
922       <refname>DROP-VIEW-FROM-CLASS</refname>
923       <refpurpose>Delete table from SQL database.</refpurpose>
924       <refclass>Function</refclass>
925     </refnamediv>
926     <refsect1>
927       <title>Syntax</title>
928       <synopsis>
929       <function>drop-view-from-class</function> <replaceable>view-class-name</replaceable> &amp;key <replaceable>database</replaceable> => <returnvalue><!-- result --></returnvalue></synopsis>
930     </refsect1>
931     <refsect1>
932       <title>Arguments and Values</title>
933       <variablelist>
934         <varlistentry>
935           <term><parameter>view-class-name</parameter></term>
936           <listitem>
937             <para>
938               The name of the <glossterm linkend="gloss-view-class">View
939               Class</glossterm>.
940             </para>
941           </listitem>
942         </varlistentry>
943         <varlistentry>
944           <term><parameter>database</parameter></term>
945           <listitem>
946             <para>
947               <glossterm linkend="gloss-database-object">database
948               object</glossterm>. This will default to the value of
949               <symbol>*default-database*</symbol>.
950             </para>
951           </listitem>
952         </varlistentry>
953       </variablelist>
954     </refsect1>
955     <refsect1>
956       <title>Description</title>
957       <para>Removes a table defined by the <glossterm
958       linkend="gloss-view-class">View Class</glossterm>
959       <parameter>view-class-name</parameter> from
960       <parameter>database</parameter> which defaults to
961       <parameter>*default-database*</parameter>.
962       </para>
963     </refsect1>
964     <refsect1>
965       <title>Examples</title>
966       <screen>
967 (list-tables)
968 => ("FOO" "BAR")
969 (drop-view-from-class 'foo)
970 =>
971 (list-tables)
972 => ("BAR")
973       </screen>
974     </refsect1>
975     <refsect1>
976       <title>Side Effects</title>
977       <para>
978         Deletes a table from the SQL database.
979       </para>
980     </refsect1>
981     <refsect1>
982       <title>Affected by</title>
983       <para>
984         Whether the specified table exists in the SQL database.
985       </para>
986     </refsect1>
987     <refsect1>
988       <title>Exceptional Situations</title>
989       <para>
990         A condition may be signalled if the table does not exist in
991         the SQL database or if the SQL connection does not have
992         sufficient permissions to delete tables.
993       </para>
994     </refsect1>
995     <refsect1>
996       <title>See Also</title>
997       <para>
998         <simplelist>
999           <member><link linkend="create-view-from-class"><function>create-view-from-class</function></link></member>
1000           <member><link linkend="def-view-class"><function>def-view-class</function></link></member>
1001         </simplelist>
1002       </para>
1003     </refsect1>
1004     <refsect1>
1005       <title>Notes</title>
1006       <para>
1007         None.
1008       </para>
1009     </refsect1>
1010   </refentry>
1011
1012   <refentry id="list-classes">
1013     <refnamediv>
1014       <refname>LIST-CLASSES</refname>
1015       <refpurpose>List classes for tables in SQL database.</refpurpose>
1016       <refclass>Function</refclass>
1017     </refnamediv>
1018     <refsect1>
1019       <title>Syntax</title>
1020       <synopsis>
1021       <function>list-classes</function> &amp;key <replaceable>test</replaceable> <replaceable>root-class</replaceable> <replaceable>database</replaceable> => <returnvalue>classes</returnvalue></synopsis>
1022     </refsect1>
1023     <refsect1>
1024       <title>Arguments and Values</title>
1025       <variablelist>
1026         <varlistentry>
1027           <term><parameter>test</parameter></term>
1028           <listitem>
1029             <para>
1030               a function used to filter the search. By default, <parameter>identity</parameter> is used which
1031               will return all classes.
1032             </para>
1033           </listitem>
1034         </varlistentry>
1035         <varlistentry>
1036           <term><parameter>root-class</parameter></term>
1037           <listitem>
1038             <para>
1039               specifies the root class to the search. By default,
1040               <parameter>standard-db-object</parameter> is used which
1041               is the root for all view classes.
1042             </para>
1043           </listitem>
1044         </varlistentry>
1045         <varlistentry>
1046           <term><parameter>database</parameter></term>
1047           <listitem>
1048             <para>
1049               The <glossterm
1050               linkend="gloss-database-object">database</glossterm> to
1051               search for view classes. This will default to the value
1052               of <symbol>*default-database*</symbol>.
1053             </para>
1054           </listitem>
1055         </varlistentry>
1056         <varlistentry>
1057           <term><parameter>classes</parameter></term>
1058           <listitem>
1059             <para>
1060               List of view classes.
1061             </para>
1062           </listitem>
1063         </varlistentry>
1064       </variablelist>
1065     </refsect1>
1066     <refsect1>
1067       <title>Description</title>
1068       <para>Returns a list of all the View Classes which have been
1069       defined in the Lisp session and are connected to
1070       <parameter>database</parameter> and which descended from the
1071       class <parameter>root-class</parameter> and which satisfy the
1072       function <parameter>test</parameter>.
1073       </para>
1074     </refsect1>
1075     <refsect1>
1076       <title>Examples</title>
1077       <screen>
1078 (list-classes)
1079 => (#&lt;clsql-sys::standard-db-class big> #&lt;clsql-sys::standard-db-class employee-address>
1080     #&lt;clsql-sys::standard-db-class address> #&lt;clsql-sys::standard-db-class company>
1081     #&lt;clsql-sys::standard-db-class employee>)
1082
1083 (list-classes :test #'(lambda (c) (> (length (symbol-name (class-name c))) 3)))
1084 => (#&lt;clsql-sys::standard-db-class employee-address> #&lt;clsql-sys::standard-db-class address>
1085     #&lt;clsql-sys::standard-db-class company> #&lt;clsql-sys::standard-db-class employee>)
1086       </screen>
1087     </refsect1>
1088     <refsect1>
1089       <title>Side Effects</title>
1090       <para>
1091         None.
1092       </para>
1093     </refsect1>
1094     <refsect1>
1095       <title>Affected by</title>
1096       <para>
1097         <simplelist>
1098           <member>Which view classes have been defined in the Lisp
1099           session.</member>
1100         </simplelist>
1101       </para>
1102     </refsect1>
1103     <refsect1>
1104       <title>Exceptional Situations</title>
1105       <para>
1106         None.
1107       </para>
1108     </refsect1>
1109     <refsect1>
1110       <title>See Also</title>
1111       <para>
1112         <simplelist>
1113           <member><link linkend="def-view-class"><function>def-view-class</function></link></member>
1114         </simplelist>
1115       </para>
1116     </refsect1>
1117     <refsect1>
1118       <title>Notes</title>
1119       <para>
1120         None.
1121       </para>
1122     </refsect1>
1123   </refentry>
1124
1125
1126 </reference>