X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=doc%2Fcsql.xml;h=b01abe132ff06aa2760b25f5bab98ec3ee76f671;hb=55f590bf6f5298e59aae30f02c958388f483da02;hp=284de249342ffdf05aff263f9b1fc574f8bddc2d;hpb=9f1b97ba188b6c065146fc2cb7e818e5c62b7175;p=clsql.git diff --git a/doc/csql.xml b/doc/csql.xml index 284de24..b01abe1 100644 --- a/doc/csql.xml +++ b/doc/csql.xml @@ -36,19 +36,19 @@ - &clsql; is based on the CommonSQL package from Xanalys, so the - documentation that Xanalys makes available online is useful for + &clsql; is based on the CommonSQL package from LispWorks Ltd, so the + documentation that LispWorks makes available online is useful for &clsql; as well. It is suggested that developers new to &clsql; read their documentation as well, as any differences between CommonSQL - and &clsql; are minor. Xanalys makes the following documents + and &clsql; are minor. LispWorks makes the following documents available: - - Xanalys &lw; User Guide - The &commonsql; + + &lw; User Guide - The &commonsql; Package @@ -57,8 +57,8 @@ - - Xanalys &lw; Reference Manual - The SQL + + &lw; Reference Manual - The SQL Package @@ -66,7 +66,7 @@ - + &commonsql; Tutorial by Nick Levine @@ -300,7 +300,7 @@ mapped into a database). They would be defined as follows: In an &sql; only application, the EMPLOYEE and COMPANY tables can be queried to determine things -like, "Who is Vladamir's manager?", "What company does Josef work +like, "Who is Vladimir's manager?", "What company does Josef work for?", and "What employees work for Widgets Inc.". This is done by joining tables with an &sql; query. @@ -316,12 +316,12 @@ SELECT first_name, last_name FROM employee, company -Who is Vladamir's manager? +Who is Vladimir's manager? SELECT managerid FROM employee - WHERE employee.first_name = "Vladamir" + WHERE employee.first_name = "Vladimir" AND employee.last_name = "Lenin" @@ -489,7 +489,7 @@ any other CLOS object: (defvar employee1 (make-instance 'employee :emplid 1 - :first-name "Vladamir" + :first-name "Vladimir" :last-name "Lenin" :email "lenin@soviet.org" :companyid 1))