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