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