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