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