r10015: 21 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
[clsql.git] / ChangeLog
1 21 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
2         * doc/appendix.xml: Add note about loading Oracle8 version
3         * db-oracle/oracle-loader.lisp: Support Oracle8 based on
4         data from David Young.
5
6 10 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
7         * doc/Makefile, doc/catalog-darwin.xml: Apply
8         patch from Cyrus Harmon for building docs on Mac OS X
9         * sql/package.lisp: Add new (pre-release) clisp MOP package     
10         
11 09 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
12         * Version 3.0.4 Release
13         * multiple: Remove superfluous quotes in UFFI def-type
14         and def-foreign-type forms.
15         
16 07 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
17         * Version 3.0.3 Release
18         * db-postgresql-socket/postgresql-socket-api.lisp: Commit patch
19         from Tagore Smith to call force-output after sending authentication
20         * db-odbc/odbc-api.lisp: Move ODBC v3 conversons
21         * db-odbc/odbc-sql.lisp: Load mysql or postgresql package when connecting
22         to a database of that type so that functions that indicate capabilities of
23         database are available.
24         
25 02 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
26         * db-odbc/odbc-api.lisp: More conversions to ODBC v3
27         
28 02 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
29         * Version 3.0.2 Release
30         * TODO: Add note about ODBC on Windows
31         * db-odbc/odbc-loader.lisp: Add /winnt/system32/ to
32         search directories
33         * db-odbc/odbc-ff-interface.lisp: Change the return type 
34         of SQLSetEnvAttr to :short
35         
36 02 Sep 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
37         * examples/clsql-tutorial.lisp: added missing initarg for the COMPANYID
38         slot of the employee View Class definition [reported by Franz Deuzer]. 
39
40 01 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
41         * Version 3.0.1 Release
42         * tests/test-init.lisp: Add second join class to employee-address
43         to test a class with two join slots.
44         * sql/oodml.lisp: Fix find-all function for a class with multiple
45         join slots
46         * TODO: Remove need to test/fix multiple join classes
47         
48 27 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
49         * db-mysql/Makefile, db-mysql/mysql-loader.lisp: accept patch
50         from Jon Buffington for file locations on Darwin.
51         
52 17 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
53         * sql/db-interface.lisp: Improve messages when functions
54         are passed a database object, but the method is not specialized
55         for that database type.
56         * sql/metaclasses.lisp: Fix inline declaration (reported by
57         Cyrus Harmon)
58         
59 14 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
60         * TODO: Add bug report about SQL generation with a table
61         containing two join slots.
62         * sql/oodml.lisp: Add optional size to VARCHAR type
63         
64 3 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
65         * Version 3.0.0 Release
66         * sql/expressions.lisp: Change declaration that
67         caused error on openmcl
68         * db-aodbc/aodbc-sql.lisp: Fix storage location
69         of odbc connection. Specialize database-query since
70         dbi's :types keyword is different than generic-odbc's
71         :result-types keyword
72         * sql/db-interface.lisp: Add warnings for methods
73         not specialized by a db backends
74         * tests/test-fddl.lisp: Fix case of symbols to support
75         case-sensitive Allegro 
76         * db-oracle/oracle-sql.lisp: Rework errbuf in handle-oci-error
77         * tests/test-init.lisp: Note that odbc driver for postgresql
78         doesn't properly handle table ownership
79         * LATEST-TEST-RESULTS: update with version 3.0.0
80         
81 1 Aug 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
82         * sql/expressions.lisp: conditionalise escaping of backslash in 
83         generated SQL strings on backend. 
84         * tests/test-fdml.lisp: test for escaping of backslash. 
85         * sql/oodml.lisp: minor tidying in FIND-ALL. 
86
87 26 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
88         * NEWS: Initial 3.0 announcement draft
89         * README: Expand acknowledgements of incorporated projects
90         * CONTRIBUTORS: Further document Marcus Pearce contributions
91         
92 23 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
93         * sql/oodml.lisp: add DATABASE-OUTPUT-SQL-AS-TYPE method specialisation
94         to print floats with the exponent markers removed. 
95         * tests/test-oodml.lisp: add tests for updating records with floats. 
96
97 22 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
98         * db-oracle/oracle-sql.lisp: enable :OWNER :ALL in DATABASE-LIST-* for 
99         CommonSQL compatibility. 
100         * tests/test-init.lisp: skip test :FDDL/TABLE/6 on Oracle since 
101         this column constraint syntax is not supported. 
102         * tests/test-fddl.lisp: change column indexed in test :FDDL/INDEXES/2
103         from EMPLID to LAST_NAME since Oracle complains that EMPLID is already 
104         indexed. 
105
106 17 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
107         * doc/ref-fdml.xml: document CACHE-TABLE-QUERIES. 
108         * tests/test-fdml.xml: add test for CACHE-TABLE-QUERIES. 
109         * doc/ref-ooddl.xml: minor changes to syntax and examples entries 
110         for uniformity. 
111         * doc/ref-oodml.xml: add examples for OODML. 
112         * sql/oodml.lisp: ensure SELECT passes on its REFRESH argument 
113         to FIND-ALL. 
114         * sql/metaclasses.lisp: update docstrings. 
115         * tests/test-init.lisp: change :db-constraints for emplid to 
116         (:not-null :unique) as a temporary test for multiple column constraints 
117         in DEF-VIEW-CLASS. 
118         * tests/test-oodml.lisp: add tests for *DB-AUTO-SYNC* and 
119         return type of (SETF SLOT-VALUE-USING-CLASS). 
120         * TODO, doc/TODO: remove items done. 
121         * README: fix typo. 
122         
123 16 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
124         * sql/oodml.lisp: on Lispworks, use weak valued hash tables for 
125         object caching. 
126         * sql/expressions.lisp: Fix SQL generation for the symbol NIL. 
127
128 16 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
129         * sql/expressions.lisp: reactivate caching of generated SQL strings. 
130         Move methods for DATABASE-OUTPUT-SQL, OUTPUT-SQL and SQL-HASH-KEY 
131         here from sql/fdml.lisp. Rationalise behaviour of SQL-OUTPUT, 
132         OUTPUT-SQL and DATABASE-OUTPUT-SQL. 
133         * sql/fdml.lisp: remove disabled method ADD-STORAGE-CLASS. Move 
134         methods for DATABASE-OUTPUT-SQL, OUTPUT-SQL and SQL-HASH-KEY to 
135         sql/expressions.lisp. 
136         * sql/ooddl.lisp: replace call to DATABASE-OUTPUT-SQL in 
137         DATABASE-PKEY-CONSTRAINT with call to SQL-OUTPUT. 
138         * sql/generics.lisp: add docstrings. 
139
140 15 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
141         * Version 2.11.16
142         * db-oracle/oracle-sql.lisp: Remove OpenMCL specific
143         code in favor of fixing UFFI with James Bielman's patch
144         
145 14 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
146         * Version 2.11.15
147         * db-oracle/oracle-sql.lisp: Apply patch for OpenMCL/OSX
148         from James Bielman
149         
150 14 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
151         * README, INSTALL: update URLs. Minor updates to descriptions. 
152         * tests/README: remove stuff about editing contexts. 
153
154 12 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
155         * db-oracle/oracle-objects.lisp: Change *default-varchar-length* to 
156         *default-string-length*
157         
158 12 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
159         * tests/test-syntax.lisp, tests/test-fdml.lisp: add tests for escaping 
160         of single quotes. 
161         * tests/test-fddl.lisp: add tests for column and table constraints 
162         in CREATE-TABLE. Add test for OWNER keyword parameter to 
163         LIST-TABLES (assuming same underlying machinery in other FDDL 
164         functions). 
165         * tests/test-init.lisp: restrict above test to postgresql and oracle. 
166         
167 12 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
168         * db-sqlite/sqlite-sql.lisp: Fix condition as reported by Aurelio 
169         Bignoli.
170
171 11 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
172         * sql/oodml.lisp, sql/package.lisp, doc/ref-ooddl.lisp, db-mysql/mysql-objects.lisp: Add tinyint type
173         
174 10 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
175         * Version 2.11.14
176         * doc/*.xml: documentation additionals and fixes so
177         that docbook passes xmllint.
178         
179 9 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
180         * Version 2.11.13
181         * sql/fdml.lisp: Apply patch from Kim Minh Kaplan 
182         to change escaping of single quotes. Mild optimizations
183         for escaped string output.
184         * doc/ref-ooddl.lisp: documentation additions
185         * doc/ref-oodml.lisp: Add purpose to functions
186         * TODO: Add need to test single quote escaping
187         
188 7 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
189         * doc/ref-ooddl.xml, doc-ref-oodml.xml: documentation additions
190         * sql/ooddl.lisp: Added SMALLINT type
191         * sql/generic-postgresql.lisp: Added INT2 as SMALLINT type
192         * db-mysql/mysql-objects.lisp: Added SMALLINT type
193         * sql/package.lisp: Export SMALLINT
194         * sql/expressions.lisp: Add MYSQL's UNSIGNED and ZEROFILL as
195         db-constraints
196         
197 6 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
198         * sql/expressions.lisp: add AUTO-INCREMENT and UNIQUE to the 
199         recognised column constraints for CREATE-TABLE and the :DB-CONSTRAINTS 
200         View Class slot option. 
201         * sql/ooddl.lisp: fix bug preventing the :DB-CONSTRAINTS View Class 
202         slot option accepting a list of constraints [reported by Travis Cross]. 
203         * doc/ref-fddl.xml: add some examples of specifying column and 
204         table constraints to the documentation for CREATE-TABLE. 
205         * TODO: add note about adding tests for table/column constraints. Add 
206         optimisation note about using cached attribute types in insert/update
207         operations. 
208         
209 3 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
210         * doc/appendix.xml: add notes about idiosyncrasies/unsupported 
211         features and so on the documentation for each backend. 
212         * doc/TODO: remove items done. 
213         * doc/ref-transaction.xml: add note in introduction about 
214         autocommit mode as a difference from CommonSQL. 
215         * doc/ref-syntax.xml: add notes about SQL syntax state functions 
216         being macros in CLSQL. Add note about SQL operators which are 
217         CLSQL extensions. 
218
219 2 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
220         * Version 2.11.12 released
221         * doc/ref-recording.xml: document SQL I/O recording. 
222         * doc/ref-prepared.xml: new file for documenting prepared statements. 
223         * doc/clsql.xml: comment out include for large object and CLSQL-SYS 
224         documentation. 
225         * doc/ref-conditions.xml: complete documentation of condition system. 
226         * doc/global-index.xml: add symbols from condition system and remove
227         those from LOB and prepared statement APIs. 
228         * doc/ref-fdml.xml: complete documentation of FDML.
229         * doc/glossary.xml: add View Class. 
230         * doc/TODO: remove items done. 
231         * sql/conditions.lisp: make SQL-CONDITION a parent of SQL-ERROR. 
232         * sql/package.lisp: remove FOR-EACH-ROW from exports list. Export 
233         additional slot accessors for condition classes. 
234
235 1 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
236         * doc/ref-ooddl.lisp: Add documentation
237         * doc/ooddl.lisp: Move *DEFAULT-VARCHAR-LENGTH* from oodml.lisp
238         and rename to *DEFAULT-STRING-LENGTH*. Add docstring.
239         * doc/oodml.lisp: Rename references to new name of
240         *DEFAULT-STRING-LENGTH*
241
242 1 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
243         * doc/ref-transaction.xml: document transaction handling. 
244         * sql/transaction.lisp: ensure that COMMIT, ROLLBACK and 
245         START-TRANSACTION return NIL as per the CommonSQL spec. Modify 
246         ADD-TRANSACTION-{ROLLBACK|COMMIT}-HOOK such that a database is 
247         passed as a keyword argument defaulting to *DEFAULT-DATABASE*.
248         Added docstrings. 
249
250 30 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk>
251         * doc/ref-fdml.xml: document the FDML. 
252         * doc/ref-fddl.xml: move documentation for TRUNCATE-DATABASE here. 
253         * sql/ooddl.lisp: moved *default-varchar-length* to here from 
254         oodml.lisp and renamed to *default-string-length*
255         
256 23 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
257         * sql/oodml.lisp: Add keyword :transactions to def-view-from-class
258         to allow specifying transactionless table creation
259         * doc/ref-oodml.lisp: Add new keyword to signature of 
260         DEF-VIEW-FROM-CLASS     
261         
262 18 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
263         * Version 2.11.11
264         * sql/expressions.lisp: when removing duplicate table identifiers 
265         in the FROM clause of a query, check both table name and alias 
266         are equivalent. 
267         * sql/fdml.lisp: remove DESCRIBE-TABLE. 
268         * sql/db-interface.lisp: remove generics DESCRIBE-TABLE and 
269         DATABASE-DESCRIBE-TABLE. 
270         * sql/package.lisp: remove DESCRIBE-TABLE, DATABASE-DESCRIBE-TABLE 
271         and LIST-TABLE-INDEXES. 
272         * sql/generic-postgresql.lisp: add reader conditional #+nil for 
273         DATABASE-DESCRIBE-TABLE and comment about its uses for 
274         re-implementing LIST-ATTRIBUTE-TYPES with a single SQL query 
275         returning type info for all attributes. 
276         Fix DATABASE-SEQUENCE-LAST. 
277         * sql/fddl.lisp: remove LIST-TABLE-INDEXES and redefine 
278         LIST-INDEXES with additional keyword parameter :ON. 
279         * tests/test-fddl.lisp: replace LIST-TABLE-INDEXES in :fddl/index/3 
280         with LIST-INDEXES (with :ON parameter). 
281         * doc/global-index.xml: remove DESCRIBE-TABLE and LIST-TABLE-INDEXES. 
282         * doc/ref-connect.xml: minor tidying. 
283         * doc/ref-fddl.xml: document the FDDL. 
284         * doc/TODO: removed items done. Moved note about transaction handling 
285         from TODO to here. 
286         * TODO: move note about transaction handling to doc/TODO. Added 
287         optimization note about LIST-ATTRIBUTE-TYPES and LIST-INDEXES. 
288         
289 13 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
290         * Version 2.11.10
291         * sql/syntax.lisp: updated docstrings. 
292         * sql/package.lisp: exported DATABASE-NAME-FROM-SPEC from CLSQL 
293         package.
294         * sql/database.lisp: add docstrings for CREATE-DATABASE, 
295         DESTROY-DATABASE, TRUNCATE-DATABASE and LIST-DATABASES. Replace 
296         CLSQL-GENERIC-ERROR signalled in RECONNECT with SQL-CONNECTION-ERROR. 
297         * doc/ref-syntax.xml, doc/global-index.xml: minor tidying. 
298         * doc/ref-connect.xml: document connection/initialisation. 
299         * doc/ref-fdml.xml: move TRUNCATE-DATABASE reference entry here. 
300         * doc/TODO: remove items done. 
301         * Makefile: add db-oracle to to SUBDIRS. 
302
303 13 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
304         * sql/oodml.lisp: Add new serialization functions:
305         WRITE-INSTANCE-TO-STREAM and READ-INSTANCE-FROM-STREAM
306         * sql/expressions.lisp: Avoid duplicate FROM names when selecting
307         from a table that has more than one primary index.
308         * sql/conditions.lisp: Fix printing of closed-database error
309         
310 13 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
311         * Version 2.11.9
312         * sql/conditions.lisp: Set initial slot value for message in SQL-WARNING
313         * sql/transactions.lisp: Correctly set slots of SQL-WARNING
314
315 12 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk>
316         * sql/package.lisp: export DATABASE-TYPE from CLSQL and subclasses 
317         of SQL-EXPRESSION from CLSQL-SYS. 
318         * sql/syntax.lisp: make error signalled in SQL-OPERATION an 
319         SQL-USER-ERROR. Make SQL-OPERATOR return just one value. 
320         * doc/Makefile: added Mandrake linux. 
321         * doc/catalog-redhat.xml, doc/catalog-mandrake.xml: new files. 
322         * doc/appendix.xml: fixed little typo (adsf). 
323         * doc/glossary.xml: removed closed-database and note about 
324         sql-expression, added some entries. 
325         * doc/ref-syntax.xml: documented the symbolic SQL syntax. 
326
327 10 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
328         * Version 2.11.8
329         * db-mysql/mysql-loader.lisp: Remove load of unnecessary zlib library
330         * multiple: Add generalized-boolean type as requested by
331         Edi Weitz
332         * TODO: Added need for test of generalized-boolean
333         
334 9 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
335         * Version 2.11.7 released
336         * uffi/clsql-uffi-loader.lisp: Apply patch from Edi Weitz
337         for loading with clc-register-user-package. Remove personal
338         directory from path lisp.
339         * db-mysql/mysql-loader.lisp: Similar changes
340         
341 8 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
342         * Version 2.11.6 released
343         * sql/oodml.lisp: Commit patch from Edi Weitz
344         to fix symbol writing/reading
345         * TODO: Add need for symbol slot test
346         
347 7 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
348         * sql/package.lisp: remove duplicate export of 
349         *CACHE-TABLE-QUERIES-DEFAULT*. 
350         * doc/ref-*.xml, doc/global-index.xml: new files documenting 
351         the CommonSQL compatible api. 
352         * tests/test-fdml.lisp: modified the test :fdml/transaction/3 to 
353         reflect changes in return values of WITH-TRANSACTION. 
354
355 04 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
356         * tests/README: Fix filename [reported by Bill Clementson]
357         * sql/transactions.lisp: Apply return value patch from
358         Edi Weitz for WITH-TRANSACTION
359         * tests/README: Remove ptester package requirement (as noted
360         by Bill Clementson)
361         
362 03 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
363         * Version 2.11.5 released
364         * examples/clsql-tutorial.lisp: Remove obsolete :nulls-ok attribute,
365         Select connection-spec based on connection type. Bugs reported by
366         Bill Clementson.
367         * uffi/uffi.dll, uffi/uffi.lib: Recompile with Visual Studio 2003
368         * db-mysql/mysql-loader.lisp: Update check for zlibwapi library
369         name on Windows, add \bin\ directory to search path
370         
371 31 May 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
372         * db-odbc/odbc-sql.lisp: DB-TYPE replaced with DATABASE-TYPE in 
373         DATABASE-CONNECT. 
374         * sql/operations.lisp: substr now generates SUBSTR for use on 
375         Oracle; added a new operator SUBSTRING for use elsewhere. minus 
376         now generates MINUS for use on Oracle. Nvl signals an error if 
377         not called with exactly 2 arguments. Add concat function for use 
378         instead of the || operator on MySQL and Oracle. 
379         * sql/syntax.lisp: changed internal symbol for the || operator to 
380         CONCAT-OP. 
381         * sql/expressions.lisp: removed redundant and unused functions 
382         GENERATE-SQL (cf. SQL-OUTPUT) and DATABASE-CONSTRAINT-DESCRIPTION
383         (cf. MAKE-CONSTRAINTS-DESCRIPTION). 
384         * sql/generics.lisp: removed generic function for 
385         DATABASE-CONSTRAINT-DESCRIPTION (see above). 
386         * tests/test-syntax.lisp: modified/added tests according to changes
387         in sql/operations.lisp. 
388         * tests/test-fdml.lisp: changed SUBSTR to SUBSTRING in test 
389         :fdml/select/21.  
390         * sql/package.lisp: added the operators SQL-SUBSTRING, SQL-CONCAT-OP 
391         and SQL-USERENV to the shared exports list. Removed 
392         ROLLBACK-TRANSACTION, COMMIT-TRANSACTION, DATABASE-START-TRANSACTION, 
393         DATABASE-ABORT-TRANSACTION, DATABASE-COMMIT-TRANSACTION, 
394         TRANSACTION-LEVEL, TRANSACTION,  RECORD-SQL-COMMAND and 
395         RECORD-SQL-RESULT from shared exports list. 
396         
397 30 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
398         * db-postgresql/postgresl-sql.lisp: Avoid computing
399         result-types lisp when nil result-types. Return only
400         one value when field-types nil.
401         * db-mysql/mysql-sql.lisp: Simple queries now
402         working with prepared statements.
403         
404 30 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
405         * Version 2.11.4: MySQL 4.1 now passes all tests
406         * sql/package.lisp: Add API for prepared statments.
407         * sql/fdml.lisp: Change implicit flatp processing
408         for string map-query for greater CommonSQL conformance.
409         Add high-high API for prepared statements.
410         * tests/test-basic.lisp: Add test for map-query and
411         single argument.
412         * sql/transactions.lisp: Change name/semantics of
413         autocommit to set-autocommit.
414         * sql/generic-postgresql.lisp: Add support for
415         prepared statements. 
416         * tests/test-internal.lisp: New file
417         * sql/odbc-api.lisp: Update to using ODBC V3 protocol
418         * clsql-mysql.asd, clsql-uffi.asd: Remove check and Common Lisp
419         Controller invocation.
420         * db-mysql/mysql-api.lisp: Add support for MySQL 4.1 field structure
421         * sql/expressions.lisp: Avoid emitting double parenthesis when a
422         function contains a subselect. 
423         
424 27 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
425         * Version 2.11.3
426         * sql/ooddl.lisp: Commit patch from Edi Weitz fixing return
427         type (setf slot-value-using-class)
428         * TODO: add not that need a test case for the above fix
429         * db-sqlite: Remove clisp support since clisp can not run CLSQL
430         with its MOP usage
431         * db-oracle/oracle-sql.lisp: By default, use OCIEnvCreate as 
432         introduced in Oracle8. Leave older code selectable by a reader macro
433         for Oracle7 and prior. Avoid use of OCIServerAttach since CLSQL
434         uses OCILogon and does not the more complex session management.
435         
436 26 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
437         * sql/oodml.lisp: Commit universal-time typo patch from Edi Weitz
438         * test/test-init.lisp: Add universal-time slot to person.
439         * test/test-fddl.lisp: Add tests of universal-time slot
440         * test/test-ooddl.lisp: Test universal-time slot in an object
441         * TODO: Remove need for universal-time test     
442         * debian/rules, debian/control: Add cl-sql-oracle binary package
443         * doc/appendix.xml: Add Oracle backend information
444         * db-oracle/oracle-objects.lisp: Add database-get-type-specifier for
445         universal-time. Convert BIGINT CLSQL type to CHAR SQL type
446         * db-mysql/mysql-sql.lisp: Fix condition name to sql-connection-error
447         * doc/ref-clsql.xml: Renamed from ref_clsql.xml. Change the documentation
448         for map-query to reflect changed in arguments to be CommonSQL compatible.
449         Updated old clsql conditions to new CommonSQL compatible conditions.
450         
451 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
452         * sql/oodml.lisp: (string n) now produces a CHAR field. Add new VARCHAR
453         type. Added *default-varchar-length* rather than previous hard-coded
454         varchar length. Remove 'simple-string and 'simple-base-string since they
455         are subtypes of 'string.
456         * db-oracle/oracle-sql.lisp: Use *default-varchar-length* rather than
457         local hard-coded value.
458         * sql/metaclasses.lisp: Convert specified type VARCHAR and (VARCHAR n) to Lisp
459         type string. Convert specified-type (CHAR n) to string. Convert specified-type
460         CHAR to lisp type character.
461         * sql/generic-postgresql.lisp: (string n) => (CHAR n)
462         * sql/operations.lisp: Add userenv
463         * doc/TODO: Add AUTOCOMMIT. Remove need for large table and bigint
464         slot tests
465         * sql/oracle-sql.lisp: Add 64-bit bigint direct conversion
466         * uffi/clsql-uffi.lisp: Handle signed 64-bit integers
467         * test/test-init.lisp: Add large table with bigint slot
468         
469 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
470         * Version 2.11.1 released: Much simpler Oracle client library loading.
471         Now uses ORACLE_HOME environmental variable as well as tests default
472         path for Oracle Instant Client. 
473         
474 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
475         * Version 2.11.0 released: Full Oracle support. All tests pass
476         * db-oracle/oracle-sql.lisp: Add declaration so that SBCL runs efficiently.
477         * tests/test-init.lisp: capitalize odbc backend name in banner
478         * CONTRIBUTORS: Add note about Marcus' excellent work
479         * sql/oodml.lisp: Removed old stub function     
480         * clsql.asd: Use module names in current package rather than keyword package
481         * db-oracle/oracle-sql.lisp: Don't trim trailing spaces. Prevent interrupts
482         in setting sequence position. Make autocommits more efficient.
483         * tests/test-init.lisp: Skip 2 tests on Oracle which have unsupported syntax 
484         * sql/oodml.lisp: Get rid of undocumented raw-string type. CommonSQL
485         strings are raw (non-trimmed trailing whitespace). Add database-get-type-specifier
486         and read-sql-value for NUMBER and CHAR.
487         * sql/base-classes.lisp: Add autocommit slot
488         * sql/transaction.lisp: Added autocommit processing, mild cleaning.
489         * doc/intro.xml: Add Oracle
490         
491 24 May 2004: Marcus Pearce (m.t.pearce@city.ac.uk) 
492         * db-postgresql-socket/postgresql-socket-sql.lisp: replace 
493         CLSQL-SIMPLE-WARNING with SQL-WARNING. 
494         * db-sqlite/sqlite-sql.lisp: replace CLSQL-SIMPLE-WARNING with 
495         SQL-WARNING. 
496         * db-aodbc/aodbc-sql.lisp: replace CLSQL-ERROR with SQL-ERROR. 
497         * clsql.asd: reworked module structure in package definition and 
498         file names to better reflect component functionality. 
499         * sql/package.lisp: added SQL-FATAL-ERROR and SQL-TIMEOUT-ERROR to 
500         exports list. Removed duplicate and obsolete exports. Exported 
501         remaining SQL operations: SQL-SOME, SQL-<>, SQL-BETWEEN, SQL-DISTINCT, 
502         SQL-NVL and SQL-FUNCTION. Organised exports by functionality/file and 
503         according to whether they are specified by CommonSQL or CLSQL 
504         extensions. 
505         * sql/transaction.lisp: replace CLSQL-SIMPLE-WARNING with 
506         SQL-WARNING. 
507         * sql/generics.lisp: moved generics for QUERY and EXECUTE-COMMAND 
508         here from basic-sql.lisp. 
509         * sql/expressions.lisp: NEW FILE: renamed from classes.lisp (deleted). 
510         * sql/fddl.lisp: NEW FILE: renamed from table.lisp (deleted). 
511         * sql/fdml.lisp: NEW FILE: merger of basic-sql.lisp and sql.lisp
512         (both deleted). 
513         * sql/ooddl.lisp: NEW FILE: ooddl from objects.lisp (deleted). 
514         * sql/oodml.lisp: NEW FILE: oodml from objects.lisp (deleted). 
515         
516 23 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
517         * Version 2.10.22 released
518         * sql/kmr-mop.lisp, sql/objects.lisp: Since SBCL is the only implementation that
519         has reversed class slots, change the default for ordered-class-slots so that slots
520         are now in the same order an in the def-view-class.
521         * sql/sql.lisp: Honor case of string table identifier to INSERT-RECORDS
522         * test/test-fddl.lisp: Add two tests for mixed case names
523         * db-oracle/oracle-sql.lisp: Add missing database qualifier. Return NUMBER (double)
524         for computed fields, this will require some adjustment to the test suite which
525         in many cases expects integers.
526         * test/test-fdml.lisp: Accomodate that Oracle returns doubles for computed columns
527         
528 22 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
529         * Version 2.10.21 released
530         * sql/sequences.lisp: Move generic sequence functions here from db-sqlite,
531         db-odbc, and db-aodbc.
532         * sql/*.lisp: Add db-type parameter to generic functions READ-SQL-VALUE,
533         DATABASE-GET-TYPE-SPECIFIER, and OUTPUT-SQL-VALUE-AS-TYPE. Update methods to use these.
534         * sql/generic-postgresql.lisp, sql/generic-odbc.lisp: New files
535         * db-odbc/odbc-sql.lisp, db-aodbc/aodbc-sql.lisp: Move common code to 
536         sql/generic-odbc.lisp
537         * db-postgresql/postgresql-sql.lisp, db-postgresql-socket/postgresql-socket-sql.lisp: 
538         Move common code to  sql/generic-postgresql.lisp
539         * sql/classes.lisp: honor case of string tables when outputting queries 
540         * sql/objects.lisp: Add database type to default database-get-type-specifier method
541         * sql/sql.lisp:  Add database type to default database-abort-transaction method
542         * db-mysql/mysql-objects.lisp: New file
543         * sql/objects.lisp: Move MySQL specific code to mysql-objects.lisp
544         * sql/utils.lisp: Add GETENV function which will be used to get ORACLE_HOME
545         from environment
546         * test/test-fdml.lisp: String table names are now case sensitive, so convert to
547         default db case for FDML/SELECT/25
548
549 22 May 2004 Kevin Rosenberg
550         * Version 2.10.20 released: Oracle backend now fails 6 out of 200 tests
551         * TODO: Added 2 variances from CommonSQL. Add tests for owner phrases
552         and string identifiers with non-default case
553         * sql/table.lisp: Don't convert string table name to a symbol.
554         * sql/classes.lisp: Honor case of string identifiers
555         * sql/sql.lisp: Ensure recyclebin is purged for Oracle in 
556         TRUNCATE-DATABASE
557         * db-oracle/oracle-sql.lisp: Add sequence functions, fix use of
558         of owner phrases. Obtain server and client versions.
559         * db-oracle/oracle-objects.lisp: Fix type specifiers
560         * tests/test-fddl.lisp: Allow :varchar2 and :number as data types
561         * tests/test-init.lisp: Properly get username from Oracle connection-spec
562         
563 22 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
564         * sql/generics.lisp: reworked docstrings. Remove generics for 
565         ADD-TO-RELATION and REMOVE-FROM-RELATION. 
566         * sql/objects.lisp: reworked docstrings. Changed UPDATE-OBJECT-JOINS 
567         to UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
568         * sql/package.lisp: Changed UPDATE-OBJECT-JOINS to UPDATE-OBJECTS-JOINS 
569         for CommonSQL compatibility. Remove ADD-TO-RELATION and 
570         REMOVE-FROM-RELATION. 
571         * tests/test-oodml.lisp: Changed UPDATE-OBJECT-JOINS to 
572         UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
573         * doc/TODO: added notes about extra slot options to DEF-VIEW-CLASS. 
574         * sql/conditions.lisp: add documentation for conditions. Add 
575         SQL-TIMEOUT-ERROR and SQL-FATAL-ERROR for CommonSQL compatibility. 
576
577 21 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
578         * sql/basic-sql.lisp: reworked docstrings. 
579         * sql/transactions.lisp: reworked docstrings. 
580         * sql/sql.lisp: reworked docstrings. 
581         * sql/initialize.lisp: reworked docstrings. INITIALIZE-DATABASE-TYPE 
582         sets *DEFAULT-DATABASE-TYPE* for CommonSQL compatibility. 
583         * sql/database.lisp: reworked docstrings. 
584         * doc/TODO: added notes about START-TRANSACTION and IN-TRANSACTION-P 
585         and FDML extensions and database extensions. 
586
587 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
588         * db-oracle/oracle-sql: Use clsql-specific error conditions. Use owner keyword.
589         * db-oracle/make9.sh: add makefile for building with Oracle 9 client
590         libraries
591         * sql/table.lisp: Add logic for dealing with Oracle 10g vs. previous
592         Oracle versions with the PURGE option required for drop table. This needs
593         to be converted to a generic function and moved to db-oracle/oracle-sql.lisp
594
595 20 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
596         * sql/classes.lisp: remove unused PARAMS slot in SQL-IDENT-ATTRIBUTE. 
597         * sql/syntax.lisp: remove unused PARAMS keyword arg to SQL-EXPRESSION. 
598         * sql/table.lisp: reworked docstrings. 
599         * sql/objects.lisp: moved *default-update-objects-max-len* here from 
600         table.lisp. 
601         * doc/TODO: notes about :if-does-not-exist arg to DROP-TABLE, 
602         DROP-VIEW and DROP-INDEX and the use of the :transactions and 
603         :constraints keyword args to CREATE-TABLE. 
604         * sql/classes.lisp: the DESCRIPTION argument to CREATE-TABLE is now 
605         CommonSQL compatible with respect to column constraints. 
606
607 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
608         * sql/oracle-sql.lisp: Now compiles and runs on SBCL.
609         Requires UFFI 1.5.0 or higher
610         
611 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
612         * Version 2.10.19
613         * sql/conditions.lisp: Fix cerror
614         
615 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
616         * Version 2.10.18 released: New condition hierarchy to be compatible
617         with CommonSQL -- not backward compatible with previous CLSQL.
618         * sql/db-interface.lisp: Add more default methods
619         * sql/objects.lisp: Add explicit table name to order-by parameters
620         in find-all when only one table to avoid selecting a duplicate row.
621         Fix error in FIND-ALL when using :order-by such as (([foo] :asc))
622         as previous logic was adding two fields (foo asc) to SELECT query.
623         Make :result-types :auto be the default for object selections.
624         Properly handle caching key when using multiple order-by with asc/desc
625         directions.
626         * db-oracle/*.lisp: Much improvements, now passes 90% of test suite
627         
628 19 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
629         * sql/recording.lisp: reworked docstrings. 
630         * sql/syntax.lisp: reworked docstrings. 
631         * doc/TODO: added notes about extensions to SQL-RECORDING-P and the 
632         SQL syntax state functions being macros. 
633
634 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
635         * sql/package.lisp: Export initialize-database-type and
636         *initialize-database-types* from CLSQL package.
637         * sql/conditions.lisp: Add new CommonSQL compatible conditions,
638         remove old CLSQL conditions.
639         * sql/loop-extensions.lisp: Make errors of type sql-user-error
640         * */*.lisp: Convert to from old to new conditions
641         
642 18 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
643         * sql/table.lisp: Add PURGE to drop command for oracle 10g backend.
644         To handle this difference, will need to add a new database-drop-table
645         generic function.
646         * db-oracle/oracle-sql.lisp: Move server-version and
647         major-version-number to database object to allow multiple connections
648         to Oracle servers of different versions.
649         
650 18 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
651         * TODO: moved notes about backends to doc/TODO. 
652         * doc/TODO: added notes about backends and select extensions. 
653         * sql/base-classes.lisp: remove obsolete schema slot in database 
654         class. 
655         
656 16 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
657         * db-oracle/oracle-api: Add OCIServerVersion
658         * db-oracle/oracle-sql: Query and store server version on connect
659         * sql/db-interface.lisp: Add new db-type-has-bigint? generic
660         function to handle OCI's lack of bigint support
661         * test/test-basic.lisp: Separate bigint testing
662         * test/test-utils.lisp: Add oracle to specs and list of backends
663         * doc/TODO: New file
664         * test/test-fdml.lisp: Added FDML/SELECT/34 to test
665         run-time instantiation of variables in reader macros.
666         * TODO: Remove item already complete. Add note about
667         condition variances
668         
669 16 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
670         * sql/syntax.lisp: added condition to the reader macro to treat [*] 
671         as a column identifier (rather than an operation) for CommonSQL 
672         compatibility. 
673         * tests/test-fdml.lisp: add tests for ORDER-BY and SET-OPERATION 
674         keword args to SELECT, [*] as column identifier, new MAP-QUERY 
675         behaviour and the ANY and ALL operators in subqueries. 
676         * tests/test-init.lisp: add set-operation and subquery tests to 
677         appropriate skip lists. 
678         * sql/objects.lisp: remove redundant and non CommonSQL compatible 
679         ORDER-BY-DESCENDING keyword argument for SELECT. 
680         * sql/classes.lisp: remove redundant and non CommonSQL compatible 
681         ORDER-BY-DESCENDING keyword argument for SELECT. 
682         * tests/test-oodml.lisp: add test for ORDER-BY keyword to SELECT 
683         with object queries. 
684
685 15 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
686         * sql/db-interface.lisp: Add new db-type-has-union? 
687         since Mysql 3.23 does not support unions.
688         * sql/test-init.lisp: Don't try union tests on database
689         backends which do not support it.
690         * db-oracle/*.lisp: initial port to UFFI
691         * sql/objects.lisp: implement UPDATE-OBJECT-JOINS,
692         implement REFRESH for SELECT.
693         * tests/test-oodml.lisp: Add tests for deferred retrieval,
694         caching, refresh, and update-object-joins
695         * tests/test-init.lisp: Add deferred-employee-address class
696         
697 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
698         * sql/operations.lisp: make MINUS operator a synonym for EXCEPT. Add 
699         COALESCE operator and make NVL a synonym for this. Make ANY, SOME, 
700         ALL and EXISTS generate function expressions so they output the 
701         correct SQL. 
702         * sql/classes.lisp: SELECT now generates appropriate SQL when 
703         passed the SET-OPERATION and ALL keyword arguments. 
704         * sql/classes.lisp: the ORDER-BY keyword argument to SELECT now 
705         accepts ordering constraints as pairs of the form (column direction) 
706         where direction may be :ASC or :DESC. 
707         * tests/test-syntax.lisp: added tests for MINUS and COALESCE/NVL. 
708         Correct tests for ANY, SOME, ALL and EXISTS. 
709         * tests/test-fdml.lisp: added test for COALESCE. 
710         * sql/sql.lisp: MAP-QUERY now applies FUNCTION to QUERY-EXPRESSION 
711         using funcall unless QUERY-EXPRESSION returns one column and its 
712         FLATP slot is not nil in which case apply is used. 
713         * tests/test-basic.lisp: modified calls to MAP-QUERY to reflect the 
714         changes. 
715         * TODO: remove items done. 
716         * db-postgresql/postgresql-sql.lisp: no need to reverse results in 
717         DATABASE-LIST-ATTRIBUTES. 
718         * db-postgresql-socket/postgresql-socket-sql.lisp: no need to reverse
719         results in DATABASE-LIST-ATTRIBUTES.    
720         
721 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
722         * sql/classes.lisp: SELECT now accepts table identifiers as strings 
723         for CommonSQL compliance. Add support for qualified sql identifiers 
724         with aliased table names. 
725         * tests/test-fdml.lisp: added tests for table identifiers as strings 
726         in SELECT and for aliased definitions. 
727         * tests/test-syntax.lisp: added tests for alias definitions. 
728         
729 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
730         * sql/sql.lisp: PRINT-QUERY now calls QUERY with result-types and 
731         field-names set to nil. 
732         * sql/sql.lisp: PRINT-QUERY now computes column sizes correctly 
733         with null attribute values. 
734         * sql/operations.lisp: modify SQL concatenation operator to accept 
735         unescaped || symbol.  
736         * sql/syntax.lisp: modify sql reader macro function to accept 
737         unescaped sql concatenation operator. 
738         * tests/test-fdml.lisp: unescape sql concatenation operator. 
739         * tests/test-syntax.lisp: unescape sql concatenation operator. 
740         * TODO: remove items done. Add notes about SQLITE/MYSQL backends. 
741         Note to add test for universal-time. Note about difference from 
742         CommonSQL in transaction handling. 
743
744 13 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
745         * tests/test-init.lisp: Add deferred-employee-address
746         class
747         * tests/test-oodml.lisp: Add deferred retrieval testgs
748         
749 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
750         * Version 2.10.17
751         * LATEST-TEST-RESULTS: Run on all platforms, add AMD64
752         * sql/sql.lisp: Add FOR-EACH-ROW macro from clsql-classic/sql.lisp
753         * db-sqlite/sqlite-uffi-api.lisp: Fix row-pointer type
754         * *: Fix minor style warnings
755         * clsql-classic: Remove system and subdirectory
756         * clsql-base: Remove system and subdirectory and
757         fold into clsql system
758         * doc/intro.xml: Remove reference to old clsql-base. Add x86_64
759         as supported platform.
760         
761 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
762         * Version 2.10.16: CLSQL now fully supports AllegroCL AMD64
763         * db-odbc/odbc-api.lisp: work around return-type bug [spr28889] in
764         Allegro 7.0beta AMD64
765         * db-odbc/*.lisp: Add a layer of indirection to foreign-type
766         of ODBC longs since this type can vary on 64-bit platforms depending
767         upon the compilation options of unixODBC.
768         * db-mysql/mysql-api.lisp: Fix int vs. long slots in foreign
769         structures found by testing with AllegroCL 7.0b AMD64.
770         * db-*/*-loader.lisp: Load 64-bit libraries on 64-bit platorms
771         * sql/objects.lisp: Simple implementation of UPDATE-OBJECT-JOINS.
772         Initial caching support for SELECT
773         * tests/test-oodml.lisp: Avoid using cache when testing select.
774         * sql/kmr-mop.lisp: Explicitly check slot order and
775         store as a cl:*feature*
776         * sql/recording.lisp: Remove additional types to
777         increase CommonSQL conformance.
778         * tests/test-init.lisp: Change a :column attribute
779         to test symbols as value
780         * sql/relations.lisp: Remove functions since they don't support
781         many to many relationships.
782         * examples/clsql-tutorial.lisp, doc/csql.lisp: Remove use
783         of add-to-relations function and replace with explicit field settings.
784         * base/classes.lisp: Remove obsolute query-stream. Add record-caches slot.
785         
786 9 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
787         * Version 2.10.15
788         * LATEST-TEST-RESULTS: results with current version
789         * sql/kmr-mop.lisp: Make CMUCL reader macros specific for cmu18
790         since cmu19 has opposite order of class slots.
791         * sql/objects.lisp: Fix (setf slot-value-using-class) for Lispworks
792         * tests/test-fdml.lisp: Renumber SELECT tests to avoid overwriting
793         a previous test
794         * tests/test-init.lisp: Check test-database-underlying-type for
795         ODBC/MySQL tests
796         
797 8 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
798         * sql/operations.lisp: complete remaining operations for the sql 
799         syntax: SUBSTR, SOME, ORDER-BY, GROUP-BY, NULL, DISTINCT, EXCEPT, 
800         UNION, INTERSECT, BETWEEN. 
801         * sql/classes.lisp: add new classes: SQL-BETWEEN-EXPRESSION, 
802         SQL-QUERY-MODIFIER-EXPRESSION and SQL-SET-EXPRESSION. 
803         * tests/test-syntax.lisp: add tests for new operations. 
804         * tests/test-fdml.lisp: add tests for queries based on new operations. 
805         * tests/test-init.lisp: add select/20 to tests skipped for sqlite and 
806         select/20, query/5, query/7 and query/8 to tests skipped by mysql. 
807         * TODO: removed entries done. 
808
809 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
810         * tests/benchmarks.lisp: Add immediate vs. deferred
811         join test.
812         
813 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
814         * Version 2.10.13: Now works on openmcl 0.14.2 
815         * sql/objects.lisp: Add :retrieval :immediate for
816         object selections
817         * tests/test-init.lisp: Add non-index fields for testing 
818         join class employee-addresss
819         * test/test-oodml.lisp: Add tests for retrieval immediate
820         * sql/metaclasses.lisp: Handle differences in direct-slot-definition 
821         values which are now listifed by openmcl 14.2.
822         * sql/objects.lisp: more framework for supporing immediate retrieval 
823
824 7 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
825         * docs/intro.xml: Upload location of a README file
826         * sql/metaclass.lisp: Work-around openmcl's CHANGE-CLASS
827         changing the type-specifier. Use a lisp type of (OR NULL FOO)
828         for a specified-type of FOO unless :db-constraints :not-null.
829         No need to specialize finalize-inheritance for openmcl.
830         * tests/test-*.lisp: Rename fields so that joins occur on
831         fields with different names. This ensures that join code is
832         selecting the proper name.
833         * test/test-init.lisp: Add :base-table for employee-address
834         view class for testing.
835         * sql/objects.lisp: Use view-table rather than name of table
836         in a number of places to fix errors noted with using :base-table.
837
838 6 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
839         * sql/objects.lisp: replace *update-records-on-make-instance* with 
840         *db-auto-sync* which also controls both automatic creation of 
841         new records on creation of new instance and updating of record 
842         fields on setting of instance slots (as suggested by Edi Weitz). 
843         * tests/test-init.lisp: replace *update-records-on-make-instance* 
844         with *db-auto-sync*. 
845         * sql/package.lisp: replace *update-records-on-make-instance* 
846         with *db-auto-sync*. 
847         * TODO: replace *update-records-on-make-instance* with *db-auto-sync*. 
848         * sql/objects.lisp: remove redundant rebindings of *db-initializing* 
849         and *default-database* in FIND-ALL. 
850         * sql/package.lisp: import time functions from CLSQL-BASE. 
851         * tests/test-time.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
852         * tests/test-fdml.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
853         * tests/test-init.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
854         * tests/test-ooddl.lisp: replace CLSQl-BASE package qualifier with 
855         CLSQL. 
856
857 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
858         * sql/classes.lisp: Add SQL-OBJECT-QUERY type. Have [select 'class]
859         now return a sql-object-query type rather than directly performing a query.
860         This improves CommonSQL conformance.
861         * sql/sql.lisp: Add new QUERY method for SQL-OBJECT-QUERY. Move
862         from basic/basic-sql.lisp the DO-QUERY and MAP-QUERY since they now
863         depend on sql-object-query-type.
864         * sql/loop-extensions.lisp: Move from base package
865         * classic/package.lisp: remove references to map-query and do-query
866
867 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
868         * TODO: New section on optimizations, especially optimizing JOINs.
869         * sql/objects.lisp: Have :target-slot return of list of lists rather
870         than a list of cons pairs to be conformant with CommonSQL.
871         Make :target-slot much more efficient by using a SQL inner join
872         statement and just requiring one SQL query. Add :retrieval :deferrred
873         to target-slot joins. Add placeholder for update-objects-join.
874         * sql/classes.lisp: Add :inner-join and :on slots to sql-query class
875         and process them for query output-sql. 
876
877 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
878         * Version 2.10.11
879         * base/basic-sql.lisp: Avoid multiple evaluation
880         of query-expression in DO-QUERY
881         * sql/objects.lisp: Make SELECT a normal function.
882         SELECT now accepts type-modified database identifiers, such as
883         [foo :string] which means that the values in column foo are returned 
884         as Lisp strings. Add new *update-records-on-make-instance* special
885         variable controlling automatic creation of new instances. Add missing
886         RESULT-TYPES keyword to FIND-ALL. Add :target-slot support.
887         * sql/packages.lisp: Export *update-records-on-make-instance* 
888         * test/test-oodml.lisp: Add tests for :target-slot and many-to-many
889         selections.
890         * test/test-fdml.lisp: Add tests for type-modified
891         database identifiers.
892         * test/test-init.lisp: Stop using add-relation since implementing
893         many-to-many joins. Use *update-records-on-make-instance* 
894         to automatically store records on instance creation. Add many-to-many
895         employee-address view-class.
896         
897 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
898         * Version 2.10.10
899         * base/loop.lisp: Add object iteration. Use :result-type
900         :auto for result-set. Remove 
901         duplicate (and non-correct) code for non-list variables by
902         simply making an atom variable into a list. 
903         * sql/package.lisp: Remove unnecessary clsql-sys package
904         and replace it with clsql.
905         * sql/metaclasses.lisp: Properly store specified-type from
906         direct-slot-definition and then store translated type in
907         effective-slot-definition
908         * sql/classes.lisp: Don't output type in sql-output
909         for SQL-IDENT-ATTRIBUTE. This is in preparation for supporting
910         [foo :integer] as fields in SELECT.
911         * sql/query.lisp: Set default for :result-types to :auto in
912         FDML QUERY.
913         * sql/objects.lisp: Use specified-type when invocating 
914         database-get-type-specifier. def-view-class macro now returns
915         the class instance.
916         * base/basic-sql.lisp: Make :AUTO the default value for
917         :RESULT-TYPES for MAP-QUERY and DO-QUERY.
918         * sql/objects.lisp: Add bigint type
919         * test/tests-basic.lisp: Add tests for :result-types for
920         MAP-QUERY and DO-QUERY
921         * test/test-fdml.lisp: Add test for result-types in LOOP
922         and also using single symbol rather than a list for variables.
923         Add test that default :result-types is auto for FDML QUERY.
924         * test/test-syntax.lisp: Don't expect TYPE in the SQL-OUTPUT
925         of SQL-IDENT-ATTRIBUTE.
926         * test/test-oodml.lisp: Enable OO loop iteration test,
927         modify it so it doesn't depend on boolean where.
928         
929 4 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
930         * Version 2.10.9
931         * sql/objects.lisp: added derived type specifier for universal time. 
932         * sql/package.lisp: added #:universal-time to clsql-sys exports. 
933         * tests/test-oodml.lisp: added test for translation of boolean slots 
934         in SELECT with object queries. 
935         
936 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
937         * db-odbc/odbc-api.lisp: Fix changing nil to "NIL" 
938         for odbc/postgresql backend.
939         * db-odbc/odbc-sql.lisp: Fix ATTRIBUTE-TYPE so that
940         it can handle NIL values from the ODBC driver
941         * tests/benchmarks.lisp: New file with initial
942         benchmark suite
943         * sql/relations.lisp: fix to add subclassing support,
944         minor optimizations [Edi Weitz]
945         
946 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
947         * Version 2.10.8        
948         * base/conditions.lisp: Add *backend-warning-behavior*
949         special variable.
950         * db-postgresql-socket/postgresql-socket-sql.lisp:
951         Honor value of *backend-warning-behavior*
952         * tests/test-fdml.lisp: Remove test of raw boolean value
953         since different backends handle this differently. Add
954         test for :column attribute.
955         * tests/test-oodml.lisp: Add tests for boolean slot value
956         and for :void-value attribute
957         * tests/test-init.lisp: Use *backend-warning-behavior*
958         to suppress warnings from postgresql about implicitly
959         creating primary key in tables. Add new address table.
960         
961 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
962         * Version 2.10.7
963         * db-odbc/odbc-dbi.lisp: Convert TINYINT to integers when
964         result-types is :auto
965         * sql/objects.lisp: Properly handled writing/reading Boolean
966         values from SQL database when retrieving objects.
967         * test/test-fdml.lisp: Add another test for boolean results
968         * test/utils.lisp: Fix incorrect declaration
969         
970 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
971         * Version 2.10.6
972         * sql/generics.lisp: add generic function for SELECT. 
973         * sql/objects.lisp: make SELECT a method specialisation. 
974         * sql/classes.lisp: MAKE-QUERY now calls SELECT if the selections 
975         referred to are View Classes. 
976         * base/basic-sql.lisp: in DO-QUERY and MAP-QUERY, if the 
977         query-expression arg evaluates to a list, then we have an object 
978         query. 
979         * tests/test-oodml.lisp: add tests for DO-QUERY and MAP-QUERY with 
980         object queries. 
981         * TODO: remove items done and add a todo for SELECT. 
982         * sql/objects.lisp: SELECT takes a :field-names arg to pass on to 
983         QUERY. 
984         * sql/sql.lisp: add :field-names arg to QUERY. 
985         * tests/test-fdml.lisp: minor rework to use :field-names arg to 
986         SELECT. 
987
988 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk)
989         * sql/objects.lisp: fix bug in FIND-ALL when SELECT called with 2 
990         or more View Classes. 
991         * sql/objects.lisp: make the :flatp argument to SELECT work with 
992         object queries. 
993         * sql/objects.lisp: make SELECT accept a :result-types argument 
994         (defaults to :auto) which is passed on to QUERY.  
995         * sql/objects.lisp: SELECT returns field-names as a second value. 
996         * tests/test-ooddl.lisp: add flatp arg to SELECT calls as appropriate. 
997         * tests/test-fdml.lisp: add flatp/result-types arguments to calls 
998         to SELECT and take only first value as appropriate.
999         * tests/test-fdml.lisp: add two new tests for query result coercion 
1000         and the field-names returned as a second value from SELECT. 
1001         * tests/test-oodml.lisp: add flatp arg to SELECT calls as appropriate. 
1002         
1003 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1004         * Version 2.10.6-pre1
1005         * sql/metaclasses.lisp: Add void-value slot
1006         * doc/csql.xml: Update def-view-class documentation
1007         * test/test-init.lisp: Change old :db-type to :db-kind.
1008         Remove old :nulls-ok attributes.
1009         * sql/objects.lisp: Add new universal-time and bigint
1010         types. Optimize reading of integers using parse-integer
1011         rather than read-from-string.
1012         * */*.lisp: Merge clsql-base-sys and clsql-base packages
1013         into clsql-base package
1014         * classic/sql.lisp: Move large object support into base, leaving
1015         classic without any functionality that is provided in the clsql
1016         system.
1017         * classic/package.lisp: Rename clsql-classic-sys package to
1018         its former nickname of clsql-classic
1019         
1020 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1021         * Version 2.10.5: SQLite backend now passes all result-types tests
1022         * clsql-sqlite.asd: Depend on clsql-uffi system
1023         * db-sqlite/sqlite-sql.lisp: Use clsql-uffi:convert-raw-field
1024         for efficiency and code reuse. 
1025         * db-sqlite/sqlite-api-uffi.lisp: Change (* :char) to (* :unsigned-char)
1026         for better cross-implementation compatibility.
1027
1028 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1029         * Version 2.10.4
1030         * sql/tables.lisp: Fix typo in CACHE-TABLE-QUERIES
1031         [Marcus Pearce]
1032         * db-postgresql/postgresql-sql.lisp: Fix foreign-string vs. cstring
1033         bug on SBCL in result-field-names function as reported by Marcus Pearce
1034         * db-sqlite/sqlite-sql.lisp: Fix  in database-store-next-row
1035         manifest in SBCL testing
1036         
1037 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1038         * Version 2.10.3
1039         * sql/database.lisp: Conform more to CommonSQL output
1040         for STATUS command [Marcus Pearce]
1041         * sql/sqlite-sql.lisp: Rework to use result-types
1042         * sql/sqlite-api-clisp.lisp: Add compatibility layer
1043         with sqlite-api-uffi.lisp so that sqlite-sql.lisp can
1044         be cleaned up of most clisp reader conditionals
1045         * sql/test-init.lisp: Now run field type tests on sqlite
1046         backend
1047         
1048 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1049         * Version 2.10.2
1050         * base/basic-sql.lisp: Set default value of :result-types 
1051         to :auto for more CommonSQL conformance. 
1052         * test/test-fdml.lisp: Add tests for numeric value of fields
1053         
1054
1055 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1056         * Version 2.10.1: New API function: CACHE-TABLE-QUERIES.
1057         * base/basic-sql.lisp, db-*/*-sql.lisp: More CommonSQL conformance.
1058         Return field names as second value for QUERY. This can be overridden
1059         for efficiency with the new keyword :FIELD-NAMES set to NIL
1060         in the QUERY invocation.
1061         * test/test-fdml.lisp: Add tests for new field-name feature
1062         * sql/metaclass.lisp: Remove old Lispworks cruft
1063         and replace it with invocation of new code in kmr-mop.lisp
1064         which actually works with Lispworks 4.2
1065         * doc/ref_clsql.xml: Document new :FIELD-NAMES keyword to
1066         QUERY function
1067         * base/db-interface.lisp: Document the multiple values
1068         returned by DATABASE-ATTRIBUTE-TYPE so matches the
1069         undocumented CommonSQL behavior. 
1070         * sql/table.lisp: Add *CACHE-TABLE-QUERIES-DEFAULT* and
1071         *DEFAULT-UPDATE-OBJECTS-MAX-LEN* variables and export them.
1072         LIST-ATTRIBUTE-TYPES now conforms to CommonSQL spec.
1073         Implement CACHE-TABLE-QUERIES.
1074         * db-odbc/odbc-sql.lisp: Fix attribute-type function
1075         * test/test-fddl.lisp: Add tests for attribute type     
1076         * db-mysql/mysql-sql.lisp: Mild optimization in accessing
1077         field structures.
1078         * base/classes.lisp: Add attribute-cache slot to database clas
1079         * base/initialize.lisp: initialize-database-type now automatically
1080         loads database-type backend as needed.
1081         * base/test-init.lisp: Utilize new initialize-database-type functionality.
1082         * TODO: remove items done
1083         
1084 30 Apr 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1085         * Version 2.9.6
1086         * sql/objects.lisp: remove create/drop-sequence-from-class. 
1087         * sql/objects.lisp: add INSTANCE-REFRESHED generic function. 
1088         * sql/objects.lisp: improved CommonSQL compatibility for
1089         UPDATE-RECORD-FROM-SLOT, UPDATE-RECORD-FROM-SLOTS,
1090         UPDATE-RECORDS-FROM-INSTANCE and DELETE-INSTANCE-RECORDS. 
1091         * sql/generics.lisp: move generics from objects.lisp to here. 
1092         
1093 29 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1094         * Version 2.9.6-pre1
1095         * db-mysql/mysql-client-info.lisp: Add client version 4.1
1096         detection
1097         * sql/sql.lisp: Make *default-database* the default for
1098         TRUNCATE-DATABASE
1099         
1100 28 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1101         * Version 2.9.5
1102         * db-mysql/mysql-sql.lisp: Fix bug in transaction capability
1103         detection
1104         * sql/objects.lisp: Commit patch from Slawek Zak to allow specifying 
1105         :metaclass in DEF-VIEW-CLASS invocation. This allows defining classes 
1106         on a metaclass specialized from standard-db-class.
1107
1108         
1109 24 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1110         * Version 2.9.4: Multiple changes to support Allegro's "modern"
1111         lisp which uses a lowercase reader and has case-sensitive symbols
1112         * sql/classes.lisp: Fix make-load-form bug for sql-ident-table
1113         exposed by case-sensitive mlisp. 
1114
1115 22 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1116         * Version 2.9.3: All tests now pass on all platforms!
1117         * LATEST-TEST-RESULTS: New file with summary of test results
1118         * sql/generics.lisp: New file for generic function definitions.
1119         * test/test-init.lisp: Display names of skipped tests.
1120         Use unwind-protect to ensure disconnect
1121         * sql/objects.lisp: Change database-type to database-underlying-type
1122         so that actual database engine is properly identified
1123         * db-odbc/odbc-api.lisp: Have default *time-conversion-function*
1124         return an ISO timestring for compatibility with other drivers.
1125         Workaround bug in MyODBC for LIST-TABLE-INDEXES
1126         * test/test-fdml.lisp: Accomodate that odbc-postgresql driver
1127         returns floating-point values for floor and truncate operations 
1128         * db-aodbc/aodbc-sql.lisp: Implement DATABASE-LIST-VIEWS
1129         * tests/test-basic.lisp: Port to regression tester
1130         * test/test-init.lisp: Output to *report-stream*
1131         * docs/appendix.xml: Document ODBC and SQLite backends.
1132         * sql/classes.lisp: Make output-sql require a database parameter.
1133         This allows SQL generation to have the proper case to support
1134         the differences in case handling between CommonSQL API,
1135         Postgresql, MySQL, Oracle.
1136         
1137 21 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1138         * Version 2.9.2: Improvments in database capability introspection
1139         and querying. Support transactions in MySQL where available.
1140         All tests now pass on MySQL and SQLite in addition to postgresql
1141         and postgresql-socket. ODBC fails only with OODDL/TIME/1 and OODDL/TIME/2.
1142         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST-VIEWS. Better support
1143         DATABASE-LIST-SEQUENCES.
1144         * clsql-uffi.asd, clsql-mysql.asd: Improve shared library loading
1145         * Database_capabilies: add HAS-VIEWS, HAS-CREATE/DESTROY-DB,
1146         HAS-BOOLEAN-WHERE, TRANSACTION-CAPABLE
1147         * tests/*.lisp: Check database capabilities and remove tests which
1148         the database backend does not support
1149         * sql/table.lisp: Add :TRANSACTIONS keyword to create table which
1150         controls whether InnoDB tables will be created when supported on
1151         the underlying MySQL server.
1152         
1153 20 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1154         * Version 2.9.0: New API function: LIST-TABLE-INDEXES,
1155         supported by all database backends (except AODBC since
1156         AODBC doesn't support index querying)
1157         * db-obdc/odbc-sql.lisp: Support DATABASE-LIST-INDEXES
1158         * db-odbc/odbc-api.lisp: Add %TABLE-STATISTICS function
1159         to support index queries
1160         * db-aodbc/aodbc-sql.lisp: Filter driver manager
1161         "information_schema" tables from LIST-TABLES
1162         * tests/test-basic.lisp: Remove table after testing
1163         * tests/test-fddl.lisp: Test LIST-TABLE-INDEXES
1164         * base/db-interface.lisp: Add DATABASE-UNDERLYING-TYPE
1165         which gets the underlying type of database -- required
1166         when dealing with ODBC databases and want to query
1167         database capabilities. Added DB-USE-COLUMN-ON-DROP-TABLES?
1168         as first database-backend specific feature. Is T on
1169         :mysql, NIL on other backends. Change DROP-TABLE to
1170         query this.
1171         
1172 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1173         * Version 2.8.2: Build changes for FreeBSD [Slawek Zak]
1174
1175 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1176         * Version 2.8.1
1177         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST function 
1178         * db-odbc/odbc-dbi.lisp: Add LIST-ALL-DATA-SOURCES function 
1179
1180 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1181         * Version 2.8.0: New API function: LIST-DATABASES
1182         * base/utils.lisp: Fix command-output on CMUCL/SBCL
1183         * db-*/*-sql.lisp: Add new database-list function
1184         * base/database.lisp: Add new LIST-DATABASES command
1185         
1186 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1187         * Version 2.7.9
1188         * db-sqlite/sqlite-sql.lisp: Fix sequence functions.
1189         * db-sqlite/sqlite-api-uffi.lisp: Print error string
1190         correctly.
1191         
1192 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1193         * Version 2.7.7
1194         * doc/csql.xml, examples/clsql-tutorial.lisp: Patch for db-kind
1195         from Eduardo Munoz.
1196         
1197 17 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1198         * Version 2.7.6
1199         * base/objects.lisp, base/classes.lisp: Patch
1200         for db-kind from Eduardo Munoz
1201         
1202 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1203         * Version 2.7.5
1204         * base/basic-sql.lisp: Fix FLATP in QUERY
1205
1206 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1207         * Version 2.7.3: Implement RECONNECT
1208
1209 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1210         * Version 2.7.2: Fix ODBC on Lispworks Windows
1211
1212 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1213         * Version 2.7.1: Fix for new ODBC backend.
1214         clsql-odbc now works on SBCL, CMUCL, OpenMCL
1215         in addition to AllegroCL and Lispworks.
1216
1217 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1218         * Version 2.7.0: New backend: ODBC. Tests as
1219         well as AODBC backend on Allegro,Lispworks.
1220         SBCL and CMUCL don't work quite yet.  Requires UFFI v1.4.11+
1221         * db-odbc/*.lisp: Add ODBC3 function SQLSetEnvAttr
1222         to explicitly set ODBC2 support. Add BIGINT support.
1223         Add result-types support. Added SQLTables.
1224         Fix array type in fetch-all-rows. Make width
1225         changable by database or query.
1226         * base/utils.lisp: Add process functions
1227         * base/package.lisp: Export utils to CLSQL-BASE-SYS
1228         * db-aodbc: Implement sequence functions,
1229         database-list-tables, database-list-attributes
1230         * tests/utils.lisp: Add support for ODBC backend,
1231         rework READ-SPECS to use +all-db-types+
1232         * db-mysql/mysql-sql.lisp: Use WITHOUT-INTERRUPTS
1233         for SEQUENCE-NEXT
1234         
1235 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1236         * Version 2.6.13. Requires UFFI version 1.4.9
1237         * db-odbc/*.lisp: Further porting.
1238         Pre-alpha code! But, basic query is now working.
1239
1240 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1241         * Version 2.6.12
1242         * base/transactions.lisp: Add quote for macro
1243         expansion of WITH-TRANSACTIONS [Time Howe]
1244         * db-sqlite/sqlite-sql.lisp: Support memory database
1245         in database-probe [Ng Pheng Siong]
1246         * db-odbc/*.lisp: Initial port to UFFI of SQL-ODBC.
1247         The DBI layer is not finished.
1248         
1249 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1250         * Version 2.6.11
1251         * sql/objects.lisp: add :root-class functionality for
1252         list-classes and add duration type support [Marcus Pearce]
1253         * db-odbc: Add mid-level [DBI] layer
1254
1255 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1256         * Version 2.6.10
1257         * db-aodbc: Add methods for generic functions, some are
1258         not yet implemented.
1259         * clsql-odbc.asd, db-odbc/*.lisp: Initial start of ODBC
1260         support
1261
1262 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1263         * Version 2.6.9
1264         * base/package.lisp: Add missing symbols [Marcus Pearce]
1265
1266 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1267         * Version 2.6.8
1268         * test/test-fddl.lisp: Cleanup fix [Marcus Pearce]
1269         * utils/time.lisp: Multiple fixes [Marcus Pearce]
1270         * sql/sql.lisp: Fix for truncate-database [Marcus Pearce]
1271         
1272 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1273         * Version 2.6.7
1274         * sql/*.lisp: Remove schema versioning cruft
1275         [Marcus Pearce]
1276         * Makefile: Add classic subdirectory
1277         
1278 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1279         * Version 2.6.6
1280         * sql/sql.lisp: Fix TRUNCATE command, bug reported
1281         by Marcus Pearce
1282         * sql/sql.lisp: Remove EXPLAIN function. Postgresql/Oracle
1283         specific and easy for an application to directly support.
1284         Idea from Marcus Pearce.
1285         * base/basic-sql.lisp: Remove DESCRIBE-TABLE top-level 
1286         API as duplicates LIST-ATTRIBUTE-TYPES [Marcus Pearce].
1287         Keep low-level interface for future optimization
1288         supporting LIST-ATTRIBUTE-TYPES command.
1289         * Makefile: Add to db-sqlite and test directories.
1290         Include them in top-level Makefile
1291         
1292 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1293         * Version 2.6.5
1294         * sql/relations.lisp: Add missing file
1295         * utils/time.lisp: Fixes/extensions [Marcus Pearce]
1296         * test/test-time.lips: New file [Marcus Pearce]
1297         
1298 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1299         * Version 2.6.4
1300         * test/test-init.lisp: Properly handle object
1301         creation. Close database after use.
1302         * sql/sql.lisp: Make DESCRIBE-TABLE a generic
1303         function so can have methods specialized on
1304         table being a string or an sql-table object.
1305         * base/pool.lisp: Really fix CMUCL locking
1306         
1307 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1308         * Version 2.6.3
1309         * test/test-init.lisp: Signal correctly
1310         if any errors occurred in any test suite
1311         * base/loop-extensions.lisp: Fix error
1312         introduced for Lispworks
1313         * base/pool.lisp: Fix locking for CMUCL
1314         * base/objects.lisp: Remove schema-version cruft
1315         
1316 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1317         * Version 2.6.2: New CLSQL API functions:
1318         DESCRIBE-TABLE AND TRUNCATE-DATABASE
1319         Currently, this are only supported on :postgresql
1320         and :postgresql-socket
1321         * base/database.lisp: automatically load ASDF system
1322         in CONNECT if not already loaded
1323         * base/tests.lisp: disconnect database after testing 
1324         * base/*.lisp: Remove CLOSED-DATABASE type in favor
1325         of storing open/closed status in slot of database
1326         * base/pool.lisp: Support locks for CMUCL, OpenMCL, SBCL
1327         * db-postgresql/postgresql-sql.lisp: add DATABASE-RECONNECT,
1328         DATABASE-DESCRIBE-TABLE
1329         * db-sqlite/sqlite-sql.lisp: Add missing slots in database
1330         * base/conditions: Remove duplicate condition
1331         * db-*/*-sql.lisp: Fill new database slot DATABASE-TYPE
1332         * base/recording.lisp: Add new :QUERY type for recording
1333         
1334 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1335         * Version 2.6.1: documentation fixes, merged
1336         classic-tests into tests
1337
1338 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1339         * Version 2.6.0 released: New API functions
1340         CREATE-DATABASE, DESTORY-DATABASE, PROBE-DATABASE
1341         * doc/ref_clsql.xml: Document new functions
1342         * base/database.lisp: New API functions
1343         * base/conditions.lisp: Added CLSQL-ACCESS-ERROR
1344         * base/utils.lisp: Fix use of position-char.
1345         Add COMMAND-OUTPUT used by backends for running
1346         external programs. Fix parsing of SQL*NET-compatible
1347         connection-specs.
1348         * base/loop-extension.lisp: Simplify package use
1349         for Lispworks and Allegro
1350         * db-*/*-sql.lisp: Added DATABASE-CREATE,
1351         DATABASE-DESTORY, PROBE-DATABASE methods
1352         * tests/test-init.lisp, clasic-tests/tests.lisp:
1353         Use destroy-database and create-database to ensure 
1354         testing with empty database
1355         * tests/test-connection.lisp: Add tests for
1356         parsing of string connection-specs
1357         * examples/run-tests.sh: New file for running
1358         test suite on all installed CL implementations
1359         * examples/clsql-tutorial.lisp: moved from
1360         doc directory
1361         * examples/dot.clsql-tests.config: New file
1362         giving an example test configuration
1363         * test/README: Add notes about rtest/ptester
1364         downloads and link to sample test configuration file.
1365         
1366 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1367         * Version 2.5.1 released:
1368         * tests/*.lisp: Rework so tests are run
1369         on multiple backends automatically based
1370         on the contents of ~/.clsql-tests.config.
1371         Reuse helper functions from classic-tests.
1372         * base/database.lisp: Support connection-spec
1373         as string for CONNECT
1374         * classic-tests/tests.lisp: Automatically
1375         load database backends as needed. 
1376         
1377 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1378         * Version 2.5.0 released:
1379         All tests for CLSQL and CLSQL-CLASSIC pass
1380         on all platforms.
1381         * base/loop-extension.lisp: Add Lispworks
1382         loop-extension. Improve type specifying on
1383         other platforms.
1384         
1385 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1386         * Version 2.4.2 released:
1387         loop extension now supported on Allegro, all
1388         CLSQL-TESTS pass on Allegro.
1389         * sql/metaclasses.lisp: Some optimization
1390         of compute-slots, be selective when
1391         ordered-class-slots needs to be called
1392         instead of class-slots
1393         * TODO: add URL with documentation on
1394         extending Lispworks LOOP form
1395         
1396 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1397         * Version 2.4.1 released: CLSQL-TESt suite passes
1398         all tests for postgresql and CMUCL, SBCL, OpenMCL.
1399         Allegro and Lispworks pass all tests except for
1400         FDML/LOOP/1 since the loop extension have not yet
1401         been ported to those implementions.
1402         * sql/metaclasses.lisp: Added new slot to standard-db-class
1403         to hold user-specified type. OpenMCL adjustments to compensate
1404         for its type-predicate function. Since AllegroCL, Lispworks,
1405         and OpenMCL have different slot orders, added compute-slots
1406         and ordered-class-slots functions so their slot order matches
1407         SBCL/CMUCL.
1408
1409 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1410         * Version 2.4.0 released: All tests for clsql-classic now finish
1411         correctly on Allegro, Lispworks, CMUCL, SBCL, OpenMCL for
1412         mysql, postgresql, postgresql-sockets, and sqlite backends.
1413         * db-mysql/mysql-sql.lisp: Fix array dereferencing
1414         * classic-tests/tests.lisp: Fix package name of
1415         number-to-sql-string. 
1416         * clsql.asd/clsql-tests.asd: Add support for asdf:test-op
1417         * db-sqlite/sqlite-api-{uffi,sql}.lisp: Multiple UFFI fixes,
1418         now passes tests on all support UFFI platforms.
1419         * db-postgresql-socket/postgresql-socket-api.list: Ported to 
1420         SBCL and OpenMCL
1421         * multiple: Finish renaming of :types keyword to :result-types for
1422         greater CommonSQL compatibility, including documentation
1423         * sql/basic-cmds.lisp: Remove obsolete file
1424         
1425 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1426         * Version 2.3.3 released
1427         * Fixes for sequences on mysql and sqlite [Marcus Pearce]
1428         * Fixes for uffi sqlite backend [Aurelio Bignoli / Kevin Rosenberg]
1429         * Fix for schema table [Marcus Pearce]
1430         * Add loop extension support for SBCL and OpenMCL [Marcus Pearce]
1431         * Fixes to test suite [Marcus Pearce]
1432
1433 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1434         * db-*/*-sql.lisp: Ensure that expr in
1435         database-query-result-set is a string
1436         * Documentation integration
1437         
1438 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1439         * With for Marcus Pearce's excellent work, I've merged
1440         his clsql-usql port into clsql. The original clsql
1441         interface is available in the clsql-classic package.
1442
1443 02 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1444         * Integrate patch from Marcus Pearce <ek735@soi.city.ac.uk>
1445         adding further support for providing backend for UncommonSQL
1446
1447 10 Mar 2004 Kevin Rosenberg (kevin@rosenberg.net)
1448         * Integrate patch from Aurelio Bignoli for SQLite backend
1449
1450 11 Nov 2003 Kevin Rosenberg (kevin@rosenberg.net)
1451         * Converted documentation to XML format
1452         * Made package installable with asdf-install
1453
1454 23 Jul 2003 Kevin Rosenberg (kevin@rosenberg.net)
1455         * Add for-each-row macro
1456
1457 12 Dec 2002 Kevin Rosenberg (kevin@rosenberg.net)
1458         * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL
1459         
1460 16 Oct 2002 Kevin Rosenberg (kevin@rosenberg.net)
1461         * Add support for SBCL, OpenMCL, and SCL
1462         * Add *load-truename* to search path for clsql's
1463         compiled libraries.
1464
1465 01 Sep 2002 Kevin Rosenberg (kevin@rosenberg.net)
1466         * Rework use of file types in .asd files
1467
1468 17 Aug 2002 Kevin Rosenberg (kevin@rosenberg.net)
1469         * Add .asd definition files for ASDF users
1470
1471 31 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
1472         * Restructure directories for Common Lisp Controller v3 compatibility
1473
1474 25 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
1475         * Also change case of logical host in loader files
1476         * Rework handling of logical pathnames
1477         
1478 05 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
1479         * Change case of logical host
1480         
1481 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
1482         * clsql-base.system: Added base package that can be used without
1483         high-level SQL commands. Used for adding support for UncommonSQL.
1484         * *.system: Reworked logical pathnames to be more consistent with
1485         Common Lisp Controller.
1486         * debian/*: Completed initial Debian support
1487         
1488 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1489         * sql/classes.cl:
1490         * sql/transactions.cl:
1491         Added transaction support. Functions/macros added:
1492         with-transaction, commit-transaction, rollback-transaction,
1493         add-transaction-commit-hook, add-transaction-rollback-hook
1494
1495 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1496         * sql/sql.cl:
1497         * sql/pool.cl:
1498         * sql/functional.cl:
1499         Added pool support in connect/disconnect and with-database.
1500         Removed with-db-from-pool as with-database can now works with the connections pool
1501
1502 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1503         * sql/sql.cl:
1504         * sql/pool.cl:
1505         * sql/classes.cl:
1506         * sql/package.cl:
1507         Completed connection pool.
1508         Added with-db-from-pool macro.
1509         
1510 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1511         * Multiple files:
1512         Added initial support for connection pool
1513         * sql/transactions.cl
1514         Took transaction code from UncommonSQL and integrated
1515         into CLSQL code. See file for disclaimer about why this
1516         was added.
1517
1518 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1519         * interfaces/postgresql/postgresql-sql.cl:
1520         Fix keyword typo in database-read-large-object
1521         * interfaces/mysql/mysql-loader.cl
1522         Fix loading on Win32
1523         * test-suite/tester-clsql.cl
1524         Fix type coercion of double-float
1525         * doc/*
1526         Added debian docbook catalog, made it the default
1527         
1528 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1529         * interface/postgresql/postgresql-api.cl:
1530         * interface/postgresql/postgresql-sql.cl:
1531         * sql/sql.cl:
1532         * sql/db-interface.cl:
1533         Added large objects support for postgresql.
1534
1535 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1536         * src/postgresql-socket/postgresql-socket-api.cl:
1537         Fixed find-foreign-function call, eliminated crypt warning
1538         * Makefiles:
1539         Multiple improvements
1540         * sql/usql.cl:
1541         Moved functionality from low-level interfaces to this file
1542         via generic functions
1543         * test-suite/tester.cl:
1544         Added test with acl-compat-tester, moved others to old-tests
1545         directory.
1546         
1547 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1548         * src/usql.cl:
1549         Reinstated commented out sections
1550         * interfaces/postgresql/postgresql-loader.cl:
1551         * interfaces/mysql/mysql-loader.cl:
1552         Updated find-forieign-library support.
1553         * interfaces/postgresql-socket/postgresql-socket-package.cl:
1554         Fixed require form for Lispworks (Thanks Marc Battyani!)
1555         * interfaces/postgresql-socket/postgresql-socket-api.cl:
1556         Fixed eval of def-function for crypt library.
1557                 
1558 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1559         * Added interface to support USQL high-level rouines
1560         
1561 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1562         * Separated db-interface and conditions from sql/sql.cl
1563         * Improved foreign library loading testing
1564         * interfaces/postgresql/postgresql-api.cl
1565         Added PQisBusy function
1566         * interfaces/clsql-uffi/clsql-uffi.cl
1567         Fixed sign error for 64-bit processing
1568         
1569 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1570         * interfaces/postgresql-socket/postgresql-socket-api.cl:
1571         Fixes to read-double-from-socket. Added 64-bit integer support.
1572         * test-suite/xptest-clsql.cl
1573         Added testint for 64-bit integers
1574         * Additons to installation docs
1575         
1576 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1577         * interfaces/postgresql-socket/postgresql-socket-api.cl:
1578         Implemented direct socket reading for field type :double
1579         * Added usage information for :types to documentation
1580         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
1581         atol, atof calls
1582         * interfaces/clsql-uffi: Created new directory. Split common
1583         interface routines that use UFFI into this package. Required
1584         especially to support direct reading of 64-bit integers into
1585         bignums and bypassing temporary strings.
1586         * test-clsql.cl: Updated to test postgresql-socket's
1587         read-double-from-socket function.
1588         * test-suite/xptest-clsql.cl
1589         Started work on test suite
1590
1591 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1592         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
1593         mysql-fetch-field-direct Got :auto types working
1594         * interfaces/postgresql/postgresql-api.cl
1595         * interfaces/postgresql-socket/postgresql-socket-api.cl
1596         Added pgsql-field-types enum. Got :auto types working.
1597         * multiple-files
1598         Renamed :field-types to :types.
1599         
1600 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1601         * Added field-types parameter to query, database-query,
1602         database-query-result-set, map-query. Haven't added code
1603         to utilize field types, yet.
1604         * Changed postgresql-socket result set from cons to a structure
1605         * Updated test-clsql.cl to use automated testing with a config
1606         file
1607         * Changed return types of field accessors from cstring to
1608         (* :unsigned-char).  This prepares for being able to use specified
1609         type conversions when taking field data into lisp.
1610         * Added field-type processing for most interfaces. Not done yet.
1611         
1612 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1613         * doc/ref.sgml: Updated MAP-QUERY example to use
1614         *read-default-float-format* (John Foderaro)
1615         * Extensive work to foreign library loaders and .system files to
1616         check for successful loading of foreign libraries.
1617         * Modified test-clsql.cl to allow more modularity and
1618         automated testing in future release.
1619         * mysql/mysql-sql.lisp: Added field types
1620         
1621 01 Jan 2002 Kevin Rosenberg (kevin@rosenberg.net)
1622         * mysql/mysql-sql.lisp:
1623         - Added support for Allegro CL and Lispworks using UFFI layer
1624         - Changed database-connect to use mysql-real-connect. This way,
1625           can avoid using double (unwind-protect)
1626         - Changed database-connect to have MySQL library allocate space
1627           for MYSQL structure. This will make the code more robust in
1628           the event that MySQL library changes the size of the mysql-mysql
1629           structure.
1630
1631