ee8f6011f8d5a4933e8061aa086eaf0546b83a79
[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>:normalisedp</parameter> - specifies whether
593           this class uses normalised inheritance from parent classes.
594           Defaults to nil, i.e. non-normalised 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       <title>Normalised inheritance schemas</title>
620       <para>
621     Specifying that <symbol>:normalisedp</symbol> is <symbol>T</symbol>
622     tells &clsql; to normalise the database schema for inheritance.
623     What this means is shown in the examples below.
624       </para>
625
626       <para>
627     With <symbol>:normalisedp</symbol> equal to <symbol>NIL</symbol>
628     (the default) the class inheritance would result in the following:
629       </para>
630       <screen>
631 (def-view-class node ()
632   ((title :accessor title :initarg :title :type (varchar 240))))
633
634 SQL table NODE:
635 +-------+--------------+------+-----+---------+-------+
636 | Field | Type         | Null | Key | Default | Extra |
637 +-------+--------------+------+-----+---------+-------+
638 | TITLE | varchar(240) | YES  |     | NULL    |       |
639 +-------+--------------+------+-----+---------+-------+
640
641 (def-view-class user (node)
642   ((user-id :accessor user-id :initarg :user-id
643             :type integer :db-kind :key :db-constraints (:not-null))
644    (nick :accessor nick :initarg :nick :type (varchar 64))))
645
646 SQL table USER:
647 +---------+--------------+------+-----+---------+-------+
648 | Field   | Type         | Null | Key | Default | Extra |
649 +---------+--------------+------+-----+---------+-------+
650 | USER_ID | int(11)      | NO   | PRI |         |       |
651 | NICK    | varchar(64)  | YES  |     | NULL    |       |
652 | TITLE   | varchar(240) | YES  |     | NULL    |       |
653 +---------+--------------+------+-----+---------+-------+
654       </screen>
655
656       <para>
657     Using <symbol>:normalisedp</symbol> <symbol>T</symbol>, both
658     view-classes need a primary key to join them on:
659       </para>
660       <screen>
661 (def-view-class node ()
662   ((node-id :accessor node-id :initarg :node-id
663             :type integer :db-kind :key
664             :db-constraints (:not-null))
665    (title :accessor title :initarg :title :type (varchar 240))))
666
667 SQL table NODE:
668 +---------+--------------+------+-----+---------+-------+
669 | Field   | Type         | Null | Key | Default | Extra |
670 +---------+--------------+------+-----+---------+-------+
671 | NODE_ID | int(11)      | NO   | PRI |         |       |
672 | TITLE   | varchar(240) | YES  |     | NULL    |       |
673 +---------+--------------+------+-----+---------+-------+
674
675 (def-view-class user (node)
676   ((user-id :accessor user-id :initarg :user-id
677             :type integer :db-kind :key :db-constraints (:not-null))
678    (nick :accessor nick :initarg :nick :type (varchar 64)))
679   (:normalisedp t))
680
681 SQL table USER:
682 +---------+-------------+------+-----+---------+-------+
683 | Field   | Type        | Null | Key | Default | Extra |
684 +---------+-------------+------+-----+---------+-------+
685 | USER_ID | int(11)     | NO   | PRI |         |       |
686 | NICK    | varchar(64) | YES  |     | NULL    |       |
687 +---------+-------------+------+-----+---------+-------+
688       </screen>
689
690       <para>
691         In this second case, all slots of the view-class 'node
692         are also available in view-class 'user, and can be used
693         as one would expect. For example, with the above normalised
694         view-classes 'node and 'user, and SQL tracing turned on:
695       </para>
696       <screen>
697 CLSQL> (setq test-user (make-instance 'user :node-id 1 :nick "test-user"
698                                             :title "This is a test user"))
699 #<USER {1003B392E1}>
700
701 CLSQL> (update-records-from-instance test-user :database db)
702 ;; .. => INSERT INTO NODE (NODE_ID,TITLE) VALUES (1,'This is a test user')
703 ;; .. <= T
704 ;; .. => INSERT INTO USER (USER_ID,NICK) VALUES (1,'test-user')
705 ;; .. <= T
706 1
707
708 CLSQL> (node-id test-user)
709 1
710
711 CLSQL> (title test-user)
712 "This is a test user"
713
714 CLSQL> (nick test-user)
715 "test-user"
716       </screen>
717
718     </refsect1>
719     <refsect1>
720       <title>Examples</title>
721       <para>
722         The following examples are from the &clsql; test suite.
723       </para>
724       <screen>
725 (def-view-class person (thing)
726   ((height :db-kind :base :accessor height :type float
727            :initarg :height)
728    (married :db-kind :base :accessor married :type boolean
729             :initarg :married)
730    (birthday :type clsql:wall-time :initarg :birthday)
731    (bd-utime :type clsql:universal-time :initarg :bd-utime)
732    (hobby :db-kind :virtual :initarg :hobby :initform nil)))
733
734 (def-view-class employee (person)
735   ((emplid
736     :db-kind :key
737     :db-constraints :not-null
738     :type integer
739     :initarg :emplid)
740    (groupid
741     :db-kind :key
742     :db-constraints :not-null
743     :type integer
744     :initarg :groupid)
745    (first-name
746     :accessor first-name
747     :type (varchar 30)
748     :initarg :first-name)
749    (last-name
750     :accessor last-name
751     :type (varchar 30)
752     :initarg :last-name)
753    (email
754     :accessor employee-email
755     :type (varchar 100)
756     :initarg :email)
757    (ecompanyid
758     :type integer
759     :initarg :companyid)
760    (company
761     :accessor employee-company
762     :db-kind :join
763     :db-info (:join-class company
764                           :home-key ecompanyid
765                           :foreign-key companyid
766                           :set nil))
767    (managerid
768     :type integer
769     :initarg :managerid)
770    (manager
771     :accessor employee-manager
772     :db-kind :join
773     :db-info (:join-class employee
774                           :home-key managerid
775                           :foreign-key emplid
776                           :set nil))
777    (addresses
778     :accessor employee-addresses
779     :db-kind :join
780     :db-info (:join-class employee-address
781                           :home-key emplid
782                           :foreign-key aemplid
783                           :target-slot address
784                           :set t)))
785   (:base-table employee))
786
787 (def-view-class company ()
788   ((companyid
789     :db-kind :key
790     :db-constraints :not-null
791     :type integer
792     :initarg :companyid)
793    (groupid
794     :db-kind :key
795     :db-constraints :not-null
796     :type integer
797     :initarg :groupid)
798    (name
799     :type (varchar 100)
800     :initarg :name)
801    (presidentid
802     :type integer
803     :initarg :presidentid)
804    (president
805     :reader president
806     :db-kind :join
807     :db-info (:join-class employee
808                           :home-key presidentid
809                           :foreign-key emplid
810                           :set nil))
811    (employees
812     :reader company-employees
813     :db-kind :join
814     :db-info (:join-class employee
815                           :home-key (companyid groupid)
816                           :foreign-key (ecompanyid groupid)
817                           :set t))))
818
819 (def-view-class address ()
820   ((addressid
821     :db-kind :key
822     :db-constraints :not-null
823     :type integer
824     :initarg :addressid)
825    (street-number
826     :type integer
827     :initarg :street-number)
828    (street-name
829     :type (varchar 30)
830     :void-value ""
831     :initarg :street-name)
832    (city
833     :column "city_field"
834     :void-value "no city"
835     :type (varchar 30)
836     :initarg :city)
837    (postal-code
838     :column zip
839     :type integer
840     :void-value 0
841     :initarg :postal-code))
842   (:base-table addr))
843
844 ;; many employees can reside at many addressess
845 (def-view-class employee-address ()
846   ((aemplid :type integer :initarg :emplid)
847    (aaddressid :type integer :initarg :addressid)
848    (verified :type boolean :initarg :verified)
849    (address :db-kind :join
850             :db-info (:join-class address
851                                   :home-key aaddressid
852                                   :foreign-key addressid
853                                   :retrieval :immediate)))
854   (:base-table "ea_join"))
855
856 (def-view-class deferred-employee-address ()
857   ((aemplid :type integer :initarg :emplid)
858    (aaddressid :type integer :initarg :addressid)
859    (verified :type boolean :initarg :verified)
860    (address :db-kind :join
861             :db-info (:join-class address
862                                   :home-key aaddressid
863                                   :foreign-key addressid
864                                   :retrieval :deferred
865                                   :set nil)))
866   (:base-table "ea_join"))
867       </screen>
868     </refsect1>
869     <refsect1>
870       <title>Side Effects</title>
871       <para>Creates a new CLOS class.</para>
872     </refsect1>
873     <refsect1>
874       <title>Affected by</title>
875       <para>
876         Nothing.
877       </para>
878     </refsect1>
879     <refsect1>
880       <title>Exceptional Situations</title>
881       <para>
882         None.
883       </para>
884     </refsect1>
885     <refsect1>
886       <title>See Also</title>
887       <para>
888         <simplelist>
889           <member><link linkend="create-view-from-class"><function>create-view-from-class</function></link></member>
890           <member><link linkend="standard-db-object"><parameter>standard-db-object</parameter></link></member>
891           <member><link linkend="drop-view-from-class"><function>drop-view-from-class</function></link></member>
892         </simplelist>
893       </para>
894     </refsect1>
895     <refsect1>
896       <title>Notes</title>
897       <para>
898         The actual SQL type for a column depends up the database type
899         in which the SQL table is stored. As an example, the view
900         class type <parameter>(varchar 100)</parameter> specifies a
901         SQL column type <parameter>VARCHAR(100)</parameter> in &mysql;
902         and a column type <parameter>VARCHAR2(100)</parameter> in
903         &oracle;
904       </para>
905       <para>
906         The actual lisp type for a slot may be different than the
907         value specified by the <parameter>:type</parameter> attribute.
908         For example, a slot declared with "<parameter>:type (string
909         30)</parameter>" actually sets the slots Lisp type as
910         <parameter>(or null string)</parameter>. This is to allow a
911         &nil; value or a string shorter than 30 characters to be
912         stored in the slot.
913       </para>
914     </refsect1>
915   </refentry>
916
917   <refentry id="drop-view-from-class">
918     <refnamediv>
919       <refname>DROP-VIEW-FROM-CLASS</refname>
920       <refpurpose>Delete table from SQL database.</refpurpose>
921       <refclass>Function</refclass>
922     </refnamediv>
923     <refsect1>
924       <title>Syntax</title>
925       <synopsis>
926       <function>drop-view-from-class</function> <replaceable>view-class-name</replaceable> &amp;key <replaceable>database</replaceable> => <returnvalue><!-- result --></returnvalue></synopsis>
927     </refsect1>
928     <refsect1>
929       <title>Arguments and Values</title>
930       <variablelist>
931         <varlistentry>
932           <term><parameter>view-class-name</parameter></term>
933           <listitem>
934             <para>
935               The name of the <glossterm linkend="gloss-view-class">View
936               Class</glossterm>.
937             </para>
938           </listitem>
939         </varlistentry>
940         <varlistentry>
941           <term><parameter>database</parameter></term>
942           <listitem>
943             <para>
944               <glossterm linkend="gloss-database-object">database
945               object</glossterm>. This will default to the value of
946               <symbol>*default-database*</symbol>.
947             </para>
948           </listitem>
949         </varlistentry>
950       </variablelist>
951     </refsect1>
952     <refsect1>
953       <title>Description</title>
954       <para>Removes a table defined by the <glossterm
955       linkend="gloss-view-class">View Class</glossterm>
956       <parameter>view-class-name</parameter> from
957       <parameter>database</parameter> which defaults to
958       <parameter>*default-database*</parameter>.
959       </para>
960     </refsect1>
961     <refsect1>
962       <title>Examples</title>
963       <screen>
964 (list-tables)
965 => ("FOO" "BAR")
966 (drop-view-from-class 'foo)
967 =>
968 (list-tables)
969 => ("BAR")
970       </screen>
971     </refsect1>
972     <refsect1>
973       <title>Side Effects</title>
974       <para>
975         Deletes a table from the SQL database.
976       </para>
977     </refsect1>
978     <refsect1>
979       <title>Affected by</title>
980       <para>
981         Whether the specified table exists in the SQL database.
982       </para>
983     </refsect1>
984     <refsect1>
985       <title>Exceptional Situations</title>
986       <para>
987         A condition may be signalled if the table does not exist in
988         the SQL database or if the SQL connection does not have
989         sufficient permissions to delete tables.
990       </para>
991     </refsect1>
992     <refsect1>
993       <title>See Also</title>
994       <para>
995         <simplelist>
996           <member><link linkend="create-view-from-class"><function>create-view-from-class</function></link></member>
997           <member><link linkend="def-view-class"><function>def-view-class</function></link></member>
998         </simplelist>
999       </para>
1000     </refsect1>
1001     <refsect1>
1002       <title>Notes</title>
1003       <para>
1004         None.
1005       </para>
1006     </refsect1>
1007   </refentry>
1008
1009   <refentry id="list-classes">
1010     <refnamediv>
1011       <refname>LIST-CLASSES</refname>
1012       <refpurpose>List classes for tables in SQL database.</refpurpose>
1013       <refclass>Function</refclass>
1014     </refnamediv>
1015     <refsect1>
1016       <title>Syntax</title>
1017       <synopsis>
1018       <function>list-classes</function> &amp;key <replaceable>test</replaceable> <replaceable>root-class</replaceable> <replaceable>database</replaceable> => <returnvalue>classes</returnvalue></synopsis>
1019     </refsect1>
1020     <refsect1>
1021       <title>Arguments and Values</title>
1022       <variablelist>
1023         <varlistentry>
1024           <term><parameter>test</parameter></term>
1025           <listitem>
1026             <para>
1027               a function used to filter the search. By default, <parameter>identity</parameter> is used which
1028               will return all classes.
1029             </para>
1030           </listitem>
1031         </varlistentry>
1032         <varlistentry>
1033           <term><parameter>root-class</parameter></term>
1034           <listitem>
1035             <para>
1036               specifies the root class to the search. By default,
1037               <parameter>standard-db-object</parameter> is used which
1038               is the root for all view classes.
1039             </para>
1040           </listitem>
1041         </varlistentry>
1042         <varlistentry>
1043           <term><parameter>database</parameter></term>
1044           <listitem>
1045             <para>
1046               The <glossterm
1047               linkend="gloss-database-object">database</glossterm> to
1048               search for view classes. This will default to the value
1049               of <symbol>*default-database*</symbol>.
1050             </para>
1051           </listitem>
1052         </varlistentry>
1053         <varlistentry>
1054           <term><parameter>classes</parameter></term>
1055           <listitem>
1056             <para>
1057               List of view classes.
1058             </para>
1059           </listitem>
1060         </varlistentry>
1061       </variablelist>
1062     </refsect1>
1063     <refsect1>
1064       <title>Description</title>
1065       <para>Returns a list of all the View Classes which have been
1066       defined in the Lisp session and are connected to
1067       <parameter>database</parameter> and which descended from the
1068       class <parameter>root-class</parameter> and which satisfy the
1069       function <parameter>test</parameter>.
1070       </para>
1071     </refsect1>
1072     <refsect1>
1073       <title>Examples</title>
1074       <screen>
1075 (list-classes)
1076 => (#&lt;clsql-sys::standard-db-class big> #&lt;clsql-sys::standard-db-class employee-address>
1077     #&lt;clsql-sys::standard-db-class address> #&lt;clsql-sys::standard-db-class company>
1078     #&lt;clsql-sys::standard-db-class employee>)
1079
1080 (list-classes :test #'(lambda (c) (> (length (symbol-name (class-name c))) 3)))
1081 => (#&lt;clsql-sys::standard-db-class employee-address> #&lt;clsql-sys::standard-db-class address>
1082     #&lt;clsql-sys::standard-db-class company> #&lt;clsql-sys::standard-db-class employee>)
1083       </screen>
1084     </refsect1>
1085     <refsect1>
1086       <title>Side Effects</title>
1087       <para>
1088         None.
1089       </para>
1090     </refsect1>
1091     <refsect1>
1092       <title>Affected by</title>
1093       <para>
1094         <simplelist>
1095           <member>Which view classes have been defined in the Lisp
1096           session.</member>
1097         </simplelist>
1098       </para>
1099     </refsect1>
1100     <refsect1>
1101       <title>Exceptional Situations</title>
1102       <para>
1103         None.
1104       </para>
1105     </refsect1>
1106     <refsect1>
1107       <title>See Also</title>
1108       <para>
1109         <simplelist>
1110           <member><link linkend="def-view-class"><function>def-view-class</function></link></member>
1111         </simplelist>
1112       </para>
1113     </refsect1>
1114     <refsect1>
1115       <title>Notes</title>
1116       <para>
1117         None.
1118       </para>
1119     </refsect1>
1120   </refentry>
1121
1122
1123 </reference>