37edf69944c346921e997c04b3153866e1722c15
[clsql.git] / ChangeLog
1 24 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
2         * db-oracle/oracle-sql.lisp: Add declaration so that SBCL runs efficiently.
3         * tests/test-init.lisp: capitalize odbc backend name in banner
4         * CONTRIBUTORS: Add note about Marcus' excellent work
5         * sql/oodml.lisp: Removed old stub function     
6         * clsql.asd: Use module names in current package rather than keyword package
7         * db-oracle/oracle-sql.lisp: Don't trim trailing spaces
8         
9 24 May 2004: Marcus Pearce (m.t.pearce@city.ac.uk) 
10         * db-postgresql-socket/postgresql-socket-sql.lisp: replace 
11         CLSQL-SIMPLE-WARNING with SQL-WARNING. 
12         * db-sqlite/sqlite-sql.lisp: replace CLSQL-SIMPLE-WARNING with 
13         SQL-WARNING. 
14         * db-aodbc/aodbc-sql.lisp: replace CLSQL-ERROR with SQL-ERROR. 
15         * clsql.asd: reworked module structure in package definition and 
16         file names to better reflect component functionality. 
17         * sql/package.lisp: added SQL-FATAL-ERROR and SQL-TIMEOUT-ERROR to 
18         exports list. Removed duplicate and obsolete exports. Exported 
19         remaining SQL operations: SQL-SOME, SQL-<>, SQL-BETWEEN, SQL-DISTINCT, 
20         SQL-NVL and SQL-FUNCTION. Organised exports by functionality/file and 
21         according to whether they are specified by CommonSQL or CLSQL 
22         extensions. 
23         * sql/transaction.lisp: replace CLSQL-SIMPLE-WARNING with 
24         SQL-WARNING. 
25         * sql/generics.lisp: moved generics for QUERY and EXECUTE-COMMAND 
26         here from basic-sql.lisp. 
27         * sql/expressions.lisp: NEW FILE: renamed from classes.lisp (deleted). 
28         * sql/fddl.lisp: NEW FILE: renamed from table.lisp (deleted). 
29         * sql/fdml.lisp: NEW FILE: merger of basic-sql.lisp and sql.lisp
30         (both deleted). 
31         * sql/ooddl.lisp: NEW FILE: ooddl from objects.lisp (deleted). 
32         * sql/oodml.lisp: NEW FILE: oodml from objects.lisp (deleted). 
33         
34 23 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
35         * Version 2.10.22 released
36         * sql/kmr-mop.lisp, sql/objects.lisp: Since SBCL is the only implementation that
37         has reversed class slots, change the default for ordered-class-slots so that slots
38         are now in the same order an in the def-view-class.
39         * sql/sql.lisp: Honor case of string table identifier to INSERT-RECORDS
40         * test/test-fddl.lisp: Add two tests for mixed case names
41         * db-oracle/oracle-sql.lisp: Add missing database qualifier. Return NUMBER (double)
42         for computed fields, this will require some adjustment to the test suite which
43         in many cases expects integers.
44         * test/test-fdml.lisp: Accomodate that Oracle returns doubles for computed columns
45         
46 22 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
47         * Version 2.10.21 released
48         * sql/sequences.lisp: Move generic sequence functions here from db-sqlite,
49         db-odbc, and db-aodbc.
50         * sql/*.lisp: Add db-type parameter to generic functions READ-SQL-VALUE,
51         DATABASE-GET-TYPE-SPECIFIER, and OUTPUT-SQL-VALUE-AS-TYPE. Update methods to use these.
52         * sql/generic-postgresql.lisp, sql/generic-odbc.lisp: New files
53         * db-odbc/odbc-sql.lisp, db-aodbc/aodbc-sql.lisp: Move common code to 
54         sql/generic-odbc.lisp
55         * db-postgresql/postgresql-sql.lisp, db-postgresql-socket/postgresql-socket-sql.lisp: 
56         Move common code to  sql/generic-postgresql.lisp
57         * sql/classes.lisp: honor case of string tables when outputting queries 
58         * sql/objects.lisp: Add database type to default database-get-type-specifier method
59         * sql/sql.lisp:  Add database type to default database-abort-transaction method
60         * db-mysql/mysql-objects.lisp: New file
61         * sql/objects.lisp: Move MySQL specific code to mysql-objects.lisp
62         * sql/utils.lisp: Add GETENV function which will be used to get ORACLE_HOME
63         from environment
64         * test/test-fdml.lisp: String table names are now case sensitive, so convert to
65         default db case for FDML/SELECT/25
66
67 22 May 2004 Kevin Rosenberg
68         * Version 2.10.20 released: Oracle backend now fails 6 out of 200 tests
69         * TODO: Added 2 variances from CommonSQL. Add tests for owner phrases
70         and string identifiers with non-default case
71         * sql/table.lisp: Don't convert string table name to a symbol.
72         * sql/classes.lisp: Honor case of string identifiers
73         * sql/sql.lisp: Ensure recyclebin is purged for Oracle in 
74         TRUNCATE-DATABASE
75         * db-oracle/oracle-sql.lisp: Add sequence functions, fix use of
76         of owner phrases. Obtain server and client versions.
77         * db-oracle/oracle-objects.lisp: Fix type specifiers
78         * tests/test-fddl.lisp: Allow :varchar2 and :number as data types
79         * tests/test-init.lisp: Properly get username from Oracle connection-spec
80         
81 22 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
82         * sql/generics.lisp: reworked docstrings. Remove generics for 
83         ADD-TO-RELATION and REMOVE-FROM-RELATION. 
84         * sql/objects.lisp: reworked docstrings. Changed UPDATE-OBJECT-JOINS 
85         to UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
86         * sql/package.lisp: Changed UPDATE-OBJECT-JOINS to UPDATE-OBJECTS-JOINS 
87         for CommonSQL compatibility. Remove ADD-TO-RELATION and 
88         REMOVE-FROM-RELATION. 
89         * tests/test-oodml.lisp: Changed UPDATE-OBJECT-JOINS to 
90         UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
91         * doc/TODO: added notes about extra slot options to DEF-VIEW-CLASS. 
92         * sql/conditions.lisp: add documentation for conditions. Add 
93         SQL-TIMEOUT-ERROR and SQL-FATAL-ERROR for CommonSQL compatibility. 
94
95 21 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
96         * sql/basic-sql.lisp: reworked docstrings. 
97         * sql/transactions.lisp: reworked docstrings. 
98         * sql/sql.lisp: reworked docstrings. 
99         * sql/initialize.lisp: reworked docstrings. INITIALIZE-DATABASE-TYPE 
100         sets *DEFAULT-DATABASE-TYPE* for CommonSQL compatibility. 
101         * sql/database.lisp: reworked docstrings. 
102         * doc/TODO: added notes about START-TRANSACTION and IN-TRANSACTION-P 
103         and FDML extensions and database extensions. 
104
105 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
106         * db-oracle/oracle-sql: Use clsql-specific error conditions. Use owner keyword.
107         * db-oracle/make9.sh: add makefile for building with Oracle 9 client
108         libraries
109         * sql/table.lisp: Add logic for dealing with Oracle 10g vs. previous
110         Oracle versions with the PURGE option required for drop table. This needs
111         to be converted to a generic function and moved to db-oracle/oracle-sql.lisp
112
113 20 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
114         * sql/classes.lisp: remove unused PARAMS slot in SQL-IDENT-ATTRIBUTE. 
115         * sql/syntax.lisp: remove unused PARAMS keyword arg to SQL-EXPRESSION. 
116         * sql/table.lisp: reworked docstrings. 
117         * sql/objects.lisp: moved *default-update-objects-max-len* here from 
118         table.lisp. 
119         * doc/TODO: notes about :if-does-not-exist arg to DROP-TABLE, 
120         DROP-VIEW and DROP-INDEX and the use of the :transactions and 
121         :constraints keyword args to CREATE-TABLE. 
122         * sql/classes.lisp: the DESCRIPTION argument to CREATE-TABLE is now 
123         CommonSQL compatible with respect to column constraints. 
124
125 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
126         * sql/oracle-sql.lisp: Now compiles and runs on SBCL.
127         Requires UFFI 1.5.0 or higher
128         
129 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
130         * Version 2.10.19
131         * sql/conditions.lisp: Fix cerror
132         
133 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
134         * Version 2.10.18 released: New condition hierarchy to be compatible
135         with CommonSQL -- not backward compatible with previous CLSQL.
136         * sql/db-interface.lisp: Add more default methods
137         * sql/objects.lisp: Add explicit table name to order-by parameters
138         in find-all when only one table to avoid selecting a duplicate row.
139         Fix error in FIND-ALL when using :order-by such as (([foo] :asc))
140         as previous logic was adding two fields (foo asc) to SELECT query.
141         Make :result-types :auto be the default for object selections.
142         Properly handle caching key when using multiple order-by with asc/desc
143         directions.
144         * db-oracle/*.lisp: Much improvements, now passes 90% of test suite
145         
146 19 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
147         * sql/recording.lisp: reworked docstrings. 
148         * sql/syntax.lisp: reworked docstrings. 
149         * doc/TODO: added notes about extensions to SQL-RECORDING-P and the 
150         SQL syntax state functions being macros. 
151
152 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
153         * sql/package.lisp: Export initialize-database-type and
154         *initialize-database-types* from CLSQL package.
155         * sql/conditions.lisp: Add new CommonSQL compatible conditions,
156         remove old CLSQL conditions.
157         * sql/loop-extensions.lisp: Make errors of type sql-user-error
158         * */*.lisp: Convert to from old to new conditions
159         
160 18 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
161         * sql/table.lisp: Add PURGE to drop command for oracle 10g backend.
162         To handle this difference, will need to add a new database-drop-table
163         generic function.
164         * db-oracle/oracle-sql.lisp: Move server-version and
165         major-version-number to database object to allow multiple connections
166         to Oracle servers of different versions.
167         
168 18 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
169         * TODO: moved notes about backends to doc/TODO. 
170         * doc/TODO: added notes about backends and select extensions. 
171         * sql/base-classes.lisp: remove obsolete schema slot in database 
172         class. 
173         
174 16 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
175         * db-oracle/oracle-api: Add OCIServerVersion
176         * db-oracle/oracle-sql: Query and store server version on connect
177         * sql/db-interface.lisp: Add new db-type-has-bigint? generic
178         function to handle OCI's lack of bigint support
179         * test/test-basic.lisp: Separate bigint testing
180         * test/test-utils.lisp: Add oracle to specs and list of backends
181         * doc/TODO: New file
182         * test/test-fdml.lisp: Added FDML/SELECT/34 to test
183         run-time instantiation of variables in reader macros.
184         * TODO: Remove item already complete. Add note about
185         condition variances
186         
187 16 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
188         * sql/syntax.lisp: added condition to the reader macro to treat [*] 
189         as a column identifier (rather than an operation) for CommonSQL 
190         compatibility. 
191         * tests/test-fdml.lisp: add tests for ORDER-BY and SET-OPERATION 
192         keword args to SELECT, [*] as column identifier, new MAP-QUERY 
193         behaviour and the ANY and ALL operators in subqueries. 
194         * tests/test-init.lisp: add set-operation and subquery tests to 
195         appropriate skip lists. 
196         * sql/objects.lisp: remove redundant and non CommonSQL compatible 
197         ORDER-BY-DESCENDING keyword argument for SELECT. 
198         * sql/classes.lisp: remove redundant and non CommonSQL compatible 
199         ORDER-BY-DESCENDING keyword argument for SELECT. 
200         * tests/test-oodml.lisp: add test for ORDER-BY keyword to SELECT 
201         with object queries. 
202
203 15 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
204         * sql/db-interface.lisp: Add new db-type-has-union? 
205         since Mysql 3.23 does not support unions.
206         * sql/test-init.lisp: Don't try union tests on database
207         backends which do not support it.
208         * db-oracle/*.lisp: initial port to UFFI
209         * sql/objects.lisp: implement UPDATE-OBJECT-JOINS,
210         implement REFRESH for SELECT.
211         * tests/test-oodml.lisp: Add tests for deferred retrieval,
212         caching, refresh, and update-object-joins
213         * tests/test-init.lisp: Add deferred-employee-address class
214         
215 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
216         * sql/operations.lisp: make MINUS operator a synonym for EXCEPT. Add 
217         COALESCE operator and make NVL a synonym for this. Make ANY, SOME, 
218         ALL and EXISTS generate function expressions so they output the 
219         correct SQL. 
220         * sql/classes.lisp: SELECT now generates appropriate SQL when 
221         passed the SET-OPERATION and ALL keyword arguments. 
222         * sql/classes.lisp: the ORDER-BY keyword argument to SELECT now 
223         accepts ordering constraints as pairs of the form (column direction) 
224         where direction may be :ASC or :DESC. 
225         * tests/test-syntax.lisp: added tests for MINUS and COALESCE/NVL. 
226         Correct tests for ANY, SOME, ALL and EXISTS. 
227         * tests/test-fdml.lisp: added test for COALESCE. 
228         * sql/sql.lisp: MAP-QUERY now applies FUNCTION to QUERY-EXPRESSION 
229         using funcall unless QUERY-EXPRESSION returns one column and its 
230         FLATP slot is not nil in which case apply is used. 
231         * tests/test-basic.lisp: modified calls to MAP-QUERY to reflect the 
232         changes. 
233         * TODO: remove items done. 
234         * db-postgresql/postgresql-sql.lisp: no need to reverse results in 
235         DATABASE-LIST-ATTRIBUTES. 
236         * db-postgresql-socket/postgresql-socket-sql.lisp: no need to reverse
237         results in DATABASE-LIST-ATTRIBUTES.    
238         
239 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
240         * sql/classes.lisp: SELECT now accepts table identifiers as strings 
241         for CommonSQL compliance. Add support for qualified sql identifiers 
242         with aliased table names. 
243         * tests/test-fdml.lisp: added tests for table identifiers as strings 
244         in SELECT and for aliased definitions. 
245         * tests/test-syntax.lisp: added tests for alias definitions. 
246         
247 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
248         * sql/sql.lisp: PRINT-QUERY now calls QUERY with result-types and 
249         field-names set to nil. 
250         * sql/sql.lisp: PRINT-QUERY now computes column sizes correctly 
251         with null attribute values. 
252         * sql/operations.lisp: modify SQL concatenation operator to accept 
253         unescaped || symbol.  
254         * sql/syntax.lisp: modify sql reader macro function to accept 
255         unescaped sql concatenation operator. 
256         * tests/test-fdml.lisp: unescape sql concatenation operator. 
257         * tests/test-syntax.lisp: unescape sql concatenation operator. 
258         * TODO: remove items done. Add notes about SQLITE/MYSQL backends. 
259         Note to add test for universal-time. Note about difference from 
260         CommonSQL in transaction handling. 
261
262 13 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
263         * tests/test-init.lisp: Add deferred-employee-address
264         class
265         * tests/test-oodml.lisp: Add deferred retrieval testgs
266         
267 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
268         * Version 2.10.17
269         * LATEST-TEST-RESULTS: Run on all platforms, add AMD64
270         * sql/sql.lisp: Add FOR-EACH-ROW macro from clsql-classic/sql.lisp
271         * db-sqlite/sqlite-uffi-api.lisp: Fix row-pointer type
272         * *: Fix minor style warnings
273         * clsql-classic: Remove system and subdirectory
274         * clsql-base: Remove system and subdirectory and
275         fold into clsql system
276         * doc/intro.xml: Remove reference to old clsql-base. Add x86_64
277         as supported platform.
278         
279 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
280         * Version 2.10.16: CLSQL now fully supports AllegroCL AMD64
281         * db-odbc/odbc-api.lisp: work around return-type bug [spr28889] in
282         Allegro 7.0beta AMD64
283         * db-odbc/*.lisp: Add a layer of indirection to foreign-type
284         of ODBC longs since this type can vary on 64-bit platforms depending
285         upon the compilation options of unixODBC.
286         * db-mysql/mysql-api.lisp: Fix int vs. long slots in foreign
287         structures found by testing with AllegroCL 7.0b AMD64.
288         * db-*/*-loader.lisp: Load 64-bit libraries on 64-bit platorms
289         * sql/objects.lisp: Simple implementation of UPDATE-OBJECT-JOINS.
290         Initial caching support for SELECT
291         * tests/test-oodml.lisp: Avoid using cache when testing select.
292         * sql/kmr-mop.lisp: Explicitly check slot order and
293         store as a cl:*feature*
294         * sql/recording.lisp: Remove additional types to
295         increase CommonSQL conformance.
296         * tests/test-init.lisp: Change a :column attribute
297         to test symbols as value
298         * sql/relations.lisp: Remove functions since they don't support
299         many to many relationships.
300         * examples/clsql-tutorial.lisp, doc/csql.lisp: Remove use
301         of add-to-relations function and replace with explicit field settings.
302         * base/classes.lisp: Remove obsolute query-stream. Add record-caches slot.
303         
304 9 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
305         * Version 2.10.15
306         * LATEST-TEST-RESULTS: results with current version
307         * sql/kmr-mop.lisp: Make CMUCL reader macros specific for cmu18
308         since cmu19 has opposite order of class slots.
309         * sql/objects.lisp: Fix (setf slot-value-using-class) for Lispworks
310         * tests/test-fdml.lisp: Renumber SELECT tests to avoid overwriting
311         a previous test
312         * tests/test-init.lisp: Check test-database-underlying-type for
313         ODBC/MySQL tests
314         
315 8 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
316         * sql/operations.lisp: complete remaining operations for the sql 
317         syntax: SUBSTR, SOME, ORDER-BY, GROUP-BY, NULL, DISTINCT, EXCEPT, 
318         UNION, INTERSECT, BETWEEN. 
319         * sql/classes.lisp: add new classes: SQL-BETWEEN-EXPRESSION, 
320         SQL-QUERY-MODIFIER-EXPRESSION and SQL-SET-EXPRESSION. 
321         * tests/test-syntax.lisp: add tests for new operations. 
322         * tests/test-fdml.lisp: add tests for queries based on new operations. 
323         * tests/test-init.lisp: add select/20 to tests skipped for sqlite and 
324         select/20, query/5, query/7 and query/8 to tests skipped by mysql. 
325         * TODO: removed entries done. 
326
327 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
328         * tests/benchmarks.lisp: Add immediate vs. deferred
329         join test.
330         
331 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
332         * Version 2.10.13: Now works on openmcl 0.14.2 
333         * sql/objects.lisp: Add :retrieval :immediate for
334         object selections
335         * tests/test-init.lisp: Add non-index fields for testing 
336         join class employee-addresss
337         * test/test-oodml.lisp: Add tests for retrieval immediate
338         * sql/metaclasses.lisp: Handle differences in direct-slot-definition 
339         values which are now listifed by openmcl 14.2.
340         * sql/objects.lisp: more framework for supporing immediate retrieval 
341
342 7 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
343         * docs/intro.xml: Upload location of a README file
344         * sql/metaclass.lisp: Work-around openmcl's CHANGE-CLASS
345         changing the type-specifier. Use a lisp type of (OR NULL FOO)
346         for a specified-type of FOO unless :db-constraints :not-null.
347         No need to specialize finalize-inheritance for openmcl.
348         * tests/test-*.lisp: Rename fields so that joins occur on
349         fields with different names. This ensures that join code is
350         selecting the proper name.
351         * test/test-init.lisp: Add :base-table for employee-address
352         view class for testing.
353         * sql/objects.lisp: Use view-table rather than name of table
354         in a number of places to fix errors noted with using :base-table.
355
356 6 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
357         * sql/objects.lisp: replace *update-records-on-make-instance* with 
358         *db-auto-sync* which also controls both automatic creation of 
359         new records on creation of new instance and updating of record 
360         fields on setting of instance slots (as suggested by Edi Weitz). 
361         * tests/test-init.lisp: replace *update-records-on-make-instance* 
362         with *db-auto-sync*. 
363         * sql/package.lisp: replace *update-records-on-make-instance* 
364         with *db-auto-sync*. 
365         * TODO: replace *update-records-on-make-instance* with *db-auto-sync*. 
366         * sql/objects.lisp: remove redundant rebindings of *db-initializing* 
367         and *default-database* in FIND-ALL. 
368         * sql/package.lisp: import time functions from CLSQL-BASE. 
369         * tests/test-time.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
370         * tests/test-fdml.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
371         * tests/test-init.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
372         * tests/test-ooddl.lisp: replace CLSQl-BASE package qualifier with 
373         CLSQL. 
374
375 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
376         * sql/classes.lisp: Add SQL-OBJECT-QUERY type. Have [select 'class]
377         now return a sql-object-query type rather than directly performing a query.
378         This improves CommonSQL conformance.
379         * sql/sql.lisp: Add new QUERY method for SQL-OBJECT-QUERY. Move
380         from basic/basic-sql.lisp the DO-QUERY and MAP-QUERY since they now
381         depend on sql-object-query-type.
382         * sql/loop-extensions.lisp: Move from base package
383         * classic/package.lisp: remove references to map-query and do-query
384
385 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
386         * TODO: New section on optimizations, especially optimizing JOINs.
387         * sql/objects.lisp: Have :target-slot return of list of lists rather
388         than a list of cons pairs to be conformant with CommonSQL.
389         Make :target-slot much more efficient by using a SQL inner join
390         statement and just requiring one SQL query. Add :retrieval :deferrred
391         to target-slot joins. Add placeholder for update-objects-join.
392         * sql/classes.lisp: Add :inner-join and :on slots to sql-query class
393         and process them for query output-sql. 
394
395 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
396         * Version 2.10.11
397         * base/basic-sql.lisp: Avoid multiple evaluation
398         of query-expression in DO-QUERY
399         * sql/objects.lisp: Make SELECT a normal function.
400         SELECT now accepts type-modified database identifiers, such as
401         [foo :string] which means that the values in column foo are returned 
402         as Lisp strings. Add new *update-records-on-make-instance* special
403         variable controlling automatic creation of new instances. Add missing
404         RESULT-TYPES keyword to FIND-ALL. Add :target-slot support.
405         * sql/packages.lisp: Export *update-records-on-make-instance* 
406         * test/test-oodml.lisp: Add tests for :target-slot and many-to-many
407         selections.
408         * test/test-fdml.lisp: Add tests for type-modified
409         database identifiers.
410         * test/test-init.lisp: Stop using add-relation since implementing
411         many-to-many joins. Use *update-records-on-make-instance* 
412         to automatically store records on instance creation. Add many-to-many
413         employee-address view-class.
414         
415 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
416         * Version 2.10.10
417         * base/loop.lisp: Add object iteration. Use :result-type
418         :auto for result-set. Remove 
419         duplicate (and non-correct) code for non-list variables by
420         simply making an atom variable into a list. 
421         * sql/package.lisp: Remove unnecessary clsql-sys package
422         and replace it with clsql.
423         * sql/metaclasses.lisp: Properly store specified-type from
424         direct-slot-definition and then store translated type in
425         effective-slot-definition
426         * sql/classes.lisp: Don't output type in sql-output
427         for SQL-IDENT-ATTRIBUTE. This is in preparation for supporting
428         [foo :integer] as fields in SELECT.
429         * sql/query.lisp: Set default for :result-types to :auto in
430         FDML QUERY.
431         * sql/objects.lisp: Use specified-type when invocating 
432         database-get-type-specifier. def-view-class macro now returns
433         the class instance.
434         * base/basic-sql.lisp: Make :AUTO the default value for
435         :RESULT-TYPES for MAP-QUERY and DO-QUERY.
436         * sql/objects.lisp: Add bigint type
437         * test/tests-basic.lisp: Add tests for :result-types for
438         MAP-QUERY and DO-QUERY
439         * test/test-fdml.lisp: Add test for result-types in LOOP
440         and also using single symbol rather than a list for variables.
441         Add test that default :result-types is auto for FDML QUERY.
442         * test/test-syntax.lisp: Don't expect TYPE in the SQL-OUTPUT
443         of SQL-IDENT-ATTRIBUTE.
444         * test/test-oodml.lisp: Enable OO loop iteration test,
445         modify it so it doesn't depend on boolean where.
446         
447 4 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
448         * Version 2.10.9
449         * sql/objects.lisp: added derived type specifier for universal time. 
450         * sql/package.lisp: added #:universal-time to clsql-sys exports. 
451         * tests/test-oodml.lisp: added test for translation of boolean slots 
452         in SELECT with object queries. 
453         
454 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
455         * db-odbc/odbc-api.lisp: Fix changing nil to "NIL" 
456         for odbc/postgresql backend.
457         * db-odbc/odbc-sql.lisp: Fix ATTRIBUTE-TYPE so that
458         it can handle NIL values from the ODBC driver
459         * tests/benchmarks.lisp: New file with initial
460         benchmark suite
461         * sql/relations.lisp: fix to add subclassing support,
462         minor optimizations [Edi Weitz]
463         
464 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
465         * Version 2.10.8        
466         * base/conditions.lisp: Add *backend-warning-behavior*
467         special variable.
468         * db-postgresql-socket/postgresql-socket-sql.lisp:
469         Honor value of *backend-warning-behavior*
470         * tests/test-fdml.lisp: Remove test of raw boolean value
471         since different backends handle this differently. Add
472         test for :column attribute.
473         * tests/test-oodml.lisp: Add tests for boolean slot value
474         and for :void-value attribute
475         * tests/test-init.lisp: Use *backend-warning-behavior*
476         to suppress warnings from postgresql about implicitly
477         creating primary key in tables. Add new address table.
478         
479 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
480         * Version 2.10.7
481         * db-odbc/odbc-dbi.lisp: Convert TINYINT to integers when
482         result-types is :auto
483         * sql/objects.lisp: Properly handled writing/reading Boolean
484         values from SQL database when retrieving objects.
485         * test/test-fdml.lisp: Add another test for boolean results
486         * test/utils.lisp: Fix incorrect declaration
487         
488 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
489         * Version 2.10.6
490         * sql/generics.lisp: add generic function for SELECT. 
491         * sql/objects.lisp: make SELECT a method specialisation. 
492         * sql/classes.lisp: MAKE-QUERY now calls SELECT if the selections 
493         referred to are View Classes. 
494         * base/basic-sql.lisp: in DO-QUERY and MAP-QUERY, if the 
495         query-expression arg evaluates to a list, then we have an object 
496         query. 
497         * tests/test-oodml.lisp: add tests for DO-QUERY and MAP-QUERY with 
498         object queries. 
499         * TODO: remove items done and add a todo for SELECT. 
500         * sql/objects.lisp: SELECT takes a :field-names arg to pass on to 
501         QUERY. 
502         * sql/sql.lisp: add :field-names arg to QUERY. 
503         * tests/test-fdml.lisp: minor rework to use :field-names arg to 
504         SELECT. 
505
506 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk)
507         * sql/objects.lisp: fix bug in FIND-ALL when SELECT called with 2 
508         or more View Classes. 
509         * sql/objects.lisp: make the :flatp argument to SELECT work with 
510         object queries. 
511         * sql/objects.lisp: make SELECT accept a :result-types argument 
512         (defaults to :auto) which is passed on to QUERY.  
513         * sql/objects.lisp: SELECT returns field-names as a second value. 
514         * tests/test-ooddl.lisp: add flatp arg to SELECT calls as appropriate. 
515         * tests/test-fdml.lisp: add flatp/result-types arguments to calls 
516         to SELECT and take only first value as appropriate.
517         * tests/test-fdml.lisp: add two new tests for query result coercion 
518         and the field-names returned as a second value from SELECT. 
519         * tests/test-oodml.lisp: add flatp arg to SELECT calls as appropriate. 
520         
521 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
522         * Version 2.10.6-pre1
523         * sql/metaclasses.lisp: Add void-value slot
524         * doc/csql.xml: Update def-view-class documentation
525         * test/test-init.lisp: Change old :db-type to :db-kind.
526         Remove old :nulls-ok attributes.
527         * sql/objects.lisp: Add new universal-time and bigint
528         types. Optimize reading of integers using parse-integer
529         rather than read-from-string.
530         * */*.lisp: Merge clsql-base-sys and clsql-base packages
531         into clsql-base package
532         * classic/sql.lisp: Move large object support into base, leaving
533         classic without any functionality that is provided in the clsql
534         system.
535         * classic/package.lisp: Rename clsql-classic-sys package to
536         its former nickname of clsql-classic
537         
538 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
539         * Version 2.10.5: SQLite backend now passes all result-types tests
540         * clsql-sqlite.asd: Depend on clsql-uffi system
541         * db-sqlite/sqlite-sql.lisp: Use clsql-uffi:convert-raw-field
542         for efficiency and code reuse. 
543         * db-sqlite/sqlite-api-uffi.lisp: Change (* :char) to (* :unsigned-char)
544         for better cross-implementation compatibility.
545
546 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
547         * Version 2.10.4
548         * sql/tables.lisp: Fix typo in CACHE-TABLE-QUERIES
549         [Marcus Pearce]
550         * db-postgresql/postgresql-sql.lisp: Fix foreign-string vs. cstring
551         bug on SBCL in result-field-names function as reported by Marcus Pearce
552         * db-sqlite/sqlite-sql.lisp: Fix  in database-store-next-row
553         manifest in SBCL testing
554         
555 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
556         * Version 2.10.3
557         * sql/database.lisp: Conform more to CommonSQL output
558         for STATUS command [Marcus Pearce]
559         * sql/sqlite-sql.lisp: Rework to use result-types
560         * sql/sqlite-api-clisp.lisp: Add compatibility layer
561         with sqlite-api-uffi.lisp so that sqlite-sql.lisp can
562         be cleaned up of most clisp reader conditionals
563         * sql/test-init.lisp: Now run field type tests on sqlite
564         backend
565         
566 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
567         * Version 2.10.2
568         * base/basic-sql.lisp: Set default value of :result-types 
569         to :auto for more CommonSQL conformance. 
570         * test/test-fdml.lisp: Add tests for numeric value of fields
571         
572
573 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
574         * Version 2.10.1: New API function: CACHE-TABLE-QUERIES.
575         * base/basic-sql.lisp, db-*/*-sql.lisp: More CommonSQL conformance.
576         Return field names as second value for QUERY. This can be overridden
577         for efficiency with the new keyword :FIELD-NAMES set to NIL
578         in the QUERY invocation.
579         * test/test-fdml.lisp: Add tests for new field-name feature
580         * sql/metaclass.lisp: Remove old Lispworks cruft
581         and replace it with invocation of new code in kmr-mop.lisp
582         which actually works with Lispworks 4.2
583         * doc/ref_clsql.xml: Document new :FIELD-NAMES keyword to
584         QUERY function
585         * base/db-interface.lisp: Document the multiple values
586         returned by DATABASE-ATTRIBUTE-TYPE so matches the
587         undocumented CommonSQL behavior. 
588         * sql/table.lisp: Add *CACHE-TABLE-QUERIES-DEFAULT* and
589         *DEFAULT-UPDATE-OBJECTS-MAX-LEN* variables and export them.
590         LIST-ATTRIBUTE-TYPES now conforms to CommonSQL spec.
591         Implement CACHE-TABLE-QUERIES.
592         * db-odbc/odbc-sql.lisp: Fix attribute-type function
593         * test/test-fddl.lisp: Add tests for attribute type     
594         * db-mysql/mysql-sql.lisp: Mild optimization in accessing
595         field structures.
596         * base/classes.lisp: Add attribute-cache slot to database clas
597         * base/initialize.lisp: initialize-database-type now automatically
598         loads database-type backend as needed.
599         * base/test-init.lisp: Utilize new initialize-database-type functionality.
600         * TODO: remove items done
601         
602 30 Apr 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
603         * Version 2.9.6
604         * sql/objects.lisp: remove create/drop-sequence-from-class. 
605         * sql/objects.lisp: add INSTANCE-REFRESHED generic function. 
606         * sql/objects.lisp: improved CommonSQL compatibility for
607         UPDATE-RECORD-FROM-SLOT, UPDATE-RECORD-FROM-SLOTS,
608         UPDATE-RECORDS-FROM-INSTANCE and DELETE-INSTANCE-RECORDS. 
609         * sql/generics.lisp: move generics from objects.lisp to here. 
610         
611 29 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
612         * Version 2.9.6-pre1
613         * db-mysql/mysql-client-info.lisp: Add client version 4.1
614         detection
615         * sql/sql.lisp: Make *default-database* the default for
616         TRUNCATE-DATABASE
617         
618 28 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
619         * Version 2.9.5
620         * db-mysql/mysql-sql.lisp: Fix bug in transaction capability
621         detection
622         * sql/objects.lisp: Commit patch from Slawek Zak to allow specifying 
623         :metaclass in DEF-VIEW-CLASS invocation. This allows defining classes 
624         on a metaclass specialized from standard-db-class.
625
626         
627 24 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
628         * Version 2.9.4: Multiple changes to support Allegro's "modern"
629         lisp which uses a lowercase reader and has case-sensitive symbols
630         * sql/classes.lisp: Fix make-load-form bug for sql-ident-table
631         exposed by case-sensitive mlisp. 
632
633 22 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
634         * Version 2.9.3: All tests now pass on all platforms!
635         * LATEST-TEST-RESULTS: New file with summary of test results
636         * sql/generics.lisp: New file for generic function definitions.
637         * test/test-init.lisp: Display names of skipped tests.
638         Use unwind-protect to ensure disconnect
639         * sql/objects.lisp: Change database-type to database-underlying-type
640         so that actual database engine is properly identified
641         * db-odbc/odbc-api.lisp: Have default *time-conversion-function*
642         return an ISO timestring for compatibility with other drivers.
643         Workaround bug in MyODBC for LIST-TABLE-INDEXES
644         * test/test-fdml.lisp: Accomodate that odbc-postgresql driver
645         returns floating-point values for floor and truncate operations 
646         * db-aodbc/aodbc-sql.lisp: Implement DATABASE-LIST-VIEWS
647         * tests/test-basic.lisp: Port to regression tester
648         * test/test-init.lisp: Output to *report-stream*
649         * docs/appendix.xml: Document ODBC and SQLite backends.
650         * sql/classes.lisp: Make output-sql require a database parameter.
651         This allows SQL generation to have the proper case to support
652         the differences in case handling between CommonSQL API,
653         Postgresql, MySQL, Oracle.
654         
655 21 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
656         * Version 2.9.2: Improvments in database capability introspection
657         and querying. Support transactions in MySQL where available.
658         All tests now pass on MySQL and SQLite in addition to postgresql
659         and postgresql-socket. ODBC fails only with OODDL/TIME/1 and OODDL/TIME/2.
660         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST-VIEWS. Better support
661         DATABASE-LIST-SEQUENCES.
662         * clsql-uffi.asd, clsql-mysql.asd: Improve shared library loading
663         * Database_capabilies: add HAS-VIEWS, HAS-CREATE/DESTROY-DB,
664         HAS-BOOLEAN-WHERE, TRANSACTION-CAPABLE
665         * tests/*.lisp: Check database capabilities and remove tests which
666         the database backend does not support
667         * sql/table.lisp: Add :TRANSACTIONS keyword to create table which
668         controls whether InnoDB tables will be created when supported on
669         the underlying MySQL server.
670         
671 20 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
672         * Version 2.9.0: New API function: LIST-TABLE-INDEXES,
673         supported by all database backends (except AODBC since
674         AODBC doesn't support index querying)
675         * db-obdc/odbc-sql.lisp: Support DATABASE-LIST-INDEXES
676         * db-odbc/odbc-api.lisp: Add %TABLE-STATISTICS function
677         to support index queries
678         * db-aodbc/aodbc-sql.lisp: Filter driver manager
679         "information_schema" tables from LIST-TABLES
680         * tests/test-basic.lisp: Remove table after testing
681         * tests/test-fddl.lisp: Test LIST-TABLE-INDEXES
682         * base/db-interface.lisp: Add DATABASE-UNDERLYING-TYPE
683         which gets the underlying type of database -- required
684         when dealing with ODBC databases and want to query
685         database capabilities. Added DB-USE-COLUMN-ON-DROP-TABLES?
686         as first database-backend specific feature. Is T on
687         :mysql, NIL on other backends. Change DROP-TABLE to
688         query this.
689         
690 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
691         * Version 2.8.2: Build changes for FreeBSD [Slawek Zak]
692
693 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
694         * Version 2.8.1
695         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST function 
696         * db-odbc/odbc-dbi.lisp: Add LIST-ALL-DATA-SOURCES function 
697
698 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
699         * Version 2.8.0: New API function: LIST-DATABASES
700         * base/utils.lisp: Fix command-output on CMUCL/SBCL
701         * db-*/*-sql.lisp: Add new database-list function
702         * base/database.lisp: Add new LIST-DATABASES command
703         
704 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
705         * Version 2.7.9
706         * db-sqlite/sqlite-sql.lisp: Fix sequence functions.
707         * db-sqlite/sqlite-api-uffi.lisp: Print error string
708         correctly.
709         
710 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
711         * Version 2.7.7
712         * doc/csql.xml, examples/clsql-tutorial.lisp: Patch for db-kind
713         from Eduardo Munoz.
714         
715 17 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
716         * Version 2.7.6
717         * base/objects.lisp, base/classes.lisp: Patch
718         for db-kind from Eduardo Munoz
719         
720 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
721         * Version 2.7.5
722         * base/basic-sql.lisp: Fix FLATP in QUERY
723
724 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
725         * Version 2.7.3: Implement RECONNECT
726
727 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
728         * Version 2.7.2: Fix ODBC on Lispworks Windows
729
730 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
731         * Version 2.7.1: Fix for new ODBC backend.
732         clsql-odbc now works on SBCL, CMUCL, OpenMCL
733         in addition to AllegroCL and Lispworks.
734
735 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
736         * Version 2.7.0: New backend: ODBC. Tests as
737         well as AODBC backend on Allegro,Lispworks.
738         SBCL and CMUCL don't work quite yet.  Requires UFFI v1.4.11+
739         * db-odbc/*.lisp: Add ODBC3 function SQLSetEnvAttr
740         to explicitly set ODBC2 support. Add BIGINT support.
741         Add result-types support. Added SQLTables.
742         Fix array type in fetch-all-rows. Make width
743         changable by database or query.
744         * base/utils.lisp: Add process functions
745         * base/package.lisp: Export utils to CLSQL-BASE-SYS
746         * db-aodbc: Implement sequence functions,
747         database-list-tables, database-list-attributes
748         * tests/utils.lisp: Add support for ODBC backend,
749         rework READ-SPECS to use +all-db-types+
750         * db-mysql/mysql-sql.lisp: Use WITHOUT-INTERRUPTS
751         for SEQUENCE-NEXT
752         
753 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
754         * Version 2.6.13. Requires UFFI version 1.4.9
755         * db-odbc/*.lisp: Further porting.
756         Pre-alpha code! But, basic query is now working.
757
758 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
759         * Version 2.6.12
760         * base/transactions.lisp: Add quote for macro
761         expansion of WITH-TRANSACTIONS [Time Howe]
762         * db-sqlite/sqlite-sql.lisp: Support memory database
763         in database-probe [Ng Pheng Siong]
764         * db-odbc/*.lisp: Initial port to UFFI of SQL-ODBC.
765         The DBI layer is not finished.
766         
767 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
768         * Version 2.6.11
769         * sql/objects.lisp: add :root-class functionality for
770         list-classes and add duration type support [Marcus Pearce]
771         * db-odbc: Add mid-level [DBI] layer
772
773 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
774         * Version 2.6.10
775         * db-aodbc: Add methods for generic functions, some are
776         not yet implemented.
777         * clsql-odbc.asd, db-odbc/*.lisp: Initial start of ODBC
778         support
779
780 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
781         * Version 2.6.9
782         * base/package.lisp: Add missing symbols [Marcus Pearce]
783
784 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
785         * Version 2.6.8
786         * test/test-fddl.lisp: Cleanup fix [Marcus Pearce]
787         * utils/time.lisp: Multiple fixes [Marcus Pearce]
788         * sql/sql.lisp: Fix for truncate-database [Marcus Pearce]
789         
790 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
791         * Version 2.6.7
792         * sql/*.lisp: Remove schema versioning cruft
793         [Marcus Pearce]
794         * Makefile: Add classic subdirectory
795         
796 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
797         * Version 2.6.6
798         * sql/sql.lisp: Fix TRUNCATE command, bug reported
799         by Marcus Pearce
800         * sql/sql.lisp: Remove EXPLAIN function. Postgresql/Oracle
801         specific and easy for an application to directly support.
802         Idea from Marcus Pearce.
803         * base/basic-sql.lisp: Remove DESCRIBE-TABLE top-level 
804         API as duplicates LIST-ATTRIBUTE-TYPES [Marcus Pearce].
805         Keep low-level interface for future optimization
806         supporting LIST-ATTRIBUTE-TYPES command.
807         * Makefile: Add to db-sqlite and test directories.
808         Include them in top-level Makefile
809         
810 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
811         * Version 2.6.5
812         * sql/relations.lisp: Add missing file
813         * utils/time.lisp: Fixes/extensions [Marcus Pearce]
814         * test/test-time.lips: New file [Marcus Pearce]
815         
816 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
817         * Version 2.6.4
818         * test/test-init.lisp: Properly handle object
819         creation. Close database after use.
820         * sql/sql.lisp: Make DESCRIBE-TABLE a generic
821         function so can have methods specialized on
822         table being a string or an sql-table object.
823         * base/pool.lisp: Really fix CMUCL locking
824         
825 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
826         * Version 2.6.3
827         * test/test-init.lisp: Signal correctly
828         if any errors occurred in any test suite
829         * base/loop-extensions.lisp: Fix error
830         introduced for Lispworks
831         * base/pool.lisp: Fix locking for CMUCL
832         * base/objects.lisp: Remove schema-version cruft
833         
834 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
835         * Version 2.6.2: New CLSQL API functions:
836         DESCRIBE-TABLE AND TRUNCATE-DATABASE
837         Currently, this are only supported on :postgresql
838         and :postgresql-socket
839         * base/database.lisp: automatically load ASDF system
840         in CONNECT if not already loaded
841         * base/tests.lisp: disconnect database after testing 
842         * base/*.lisp: Remove CLOSED-DATABASE type in favor
843         of storing open/closed status in slot of database
844         * base/pool.lisp: Support locks for CMUCL, OpenMCL, SBCL
845         * db-postgresql/postgresql-sql.lisp: add DATABASE-RECONNECT,
846         DATABASE-DESCRIBE-TABLE
847         * db-sqlite/sqlite-sql.lisp: Add missing slots in database
848         * base/conditions: Remove duplicate condition
849         * db-*/*-sql.lisp: Fill new database slot DATABASE-TYPE
850         * base/recording.lisp: Add new :QUERY type for recording
851         
852 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
853         * Version 2.6.1: documentation fixes, merged
854         classic-tests into tests
855
856 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
857         * Version 2.6.0 released: New API functions
858         CREATE-DATABASE, DESTORY-DATABASE, PROBE-DATABASE
859         * doc/ref_clsql.xml: Document new functions
860         * base/database.lisp: New API functions
861         * base/conditions.lisp: Added CLSQL-ACCESS-ERROR
862         * base/utils.lisp: Fix use of position-char.
863         Add COMMAND-OUTPUT used by backends for running
864         external programs. Fix parsing of SQL*NET-compatible
865         connection-specs.
866         * base/loop-extension.lisp: Simplify package use
867         for Lispworks and Allegro
868         * db-*/*-sql.lisp: Added DATABASE-CREATE,
869         DATABASE-DESTORY, PROBE-DATABASE methods
870         * tests/test-init.lisp, clasic-tests/tests.lisp:
871         Use destroy-database and create-database to ensure 
872         testing with empty database
873         * tests/test-connection.lisp: Add tests for
874         parsing of string connection-specs
875         * examples/run-tests.sh: New file for running
876         test suite on all installed CL implementations
877         * examples/clsql-tutorial.lisp: moved from
878         doc directory
879         * examples/dot.clsql-tests.config: New file
880         giving an example test configuration
881         * test/README: Add notes about rtest/ptester
882         downloads and link to sample test configuration file.
883         
884 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
885         * Version 2.5.1 released:
886         * tests/*.lisp: Rework so tests are run
887         on multiple backends automatically based
888         on the contents of ~/.clsql-tests.config.
889         Reuse helper functions from classic-tests.
890         * base/database.lisp: Support connection-spec
891         as string for CONNECT
892         * classic-tests/tests.lisp: Automatically
893         load database backends as needed. 
894         
895 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
896         * Version 2.5.0 released:
897         All tests for CLSQL and CLSQL-CLASSIC pass
898         on all platforms.
899         * base/loop-extension.lisp: Add Lispworks
900         loop-extension. Improve type specifying on
901         other platforms.
902         
903 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
904         * Version 2.4.2 released:
905         loop extension now supported on Allegro, all
906         CLSQL-TESTS pass on Allegro.
907         * sql/metaclasses.lisp: Some optimization
908         of compute-slots, be selective when
909         ordered-class-slots needs to be called
910         instead of class-slots
911         * TODO: add URL with documentation on
912         extending Lispworks LOOP form
913         
914 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
915         * Version 2.4.1 released: CLSQL-TESt suite passes
916         all tests for postgresql and CMUCL, SBCL, OpenMCL.
917         Allegro and Lispworks pass all tests except for
918         FDML/LOOP/1 since the loop extension have not yet
919         been ported to those implementions.
920         * sql/metaclasses.lisp: Added new slot to standard-db-class
921         to hold user-specified type. OpenMCL adjustments to compensate
922         for its type-predicate function. Since AllegroCL, Lispworks,
923         and OpenMCL have different slot orders, added compute-slots
924         and ordered-class-slots functions so their slot order matches
925         SBCL/CMUCL.
926
927 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
928         * Version 2.4.0 released: All tests for clsql-classic now finish
929         correctly on Allegro, Lispworks, CMUCL, SBCL, OpenMCL for
930         mysql, postgresql, postgresql-sockets, and sqlite backends.
931         * db-mysql/mysql-sql.lisp: Fix array dereferencing
932         * classic-tests/tests.lisp: Fix package name of
933         number-to-sql-string. 
934         * clsql.asd/clsql-tests.asd: Add support for asdf:test-op
935         * db-sqlite/sqlite-api-{uffi,sql}.lisp: Multiple UFFI fixes,
936         now passes tests on all support UFFI platforms.
937         * db-postgresql-socket/postgresql-socket-api.list: Ported to 
938         SBCL and OpenMCL
939         * multiple: Finish renaming of :types keyword to :result-types for
940         greater CommonSQL compatibility, including documentation
941         * sql/basic-cmds.lisp: Remove obsolete file
942         
943 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
944         * Version 2.3.3 released
945         * Fixes for sequences on mysql and sqlite [Marcus Pearce]
946         * Fixes for uffi sqlite backend [Aurelio Bignoli / Kevin Rosenberg]
947         * Fix for schema table [Marcus Pearce]
948         * Add loop extension support for SBCL and OpenMCL [Marcus Pearce]
949         * Fixes to test suite [Marcus Pearce]
950
951 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
952         * db-*/*-sql.lisp: Ensure that expr in
953         database-query-result-set is a string
954         * Documentation integration
955         
956 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
957         * With for Marcus Pearce's excellent work, I've merged
958         his clsql-usql port into clsql. The original clsql
959         interface is available in the clsql-classic package.
960
961 02 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
962         * Integrate patch from Marcus Pearce <ek735@soi.city.ac.uk>
963         adding further support for providing backend for UncommonSQL
964
965 10 Mar 2004 Kevin Rosenberg (kevin@rosenberg.net)
966         * Integrate patch from Aurelio Bignoli for SQLite backend
967
968 11 Nov 2003 Kevin Rosenberg (kevin@rosenberg.net)
969         * Converted documentation to XML format
970         * Made package installable with asdf-install
971
972 23 Jul 2003 Kevin Rosenberg (kevin@rosenberg.net)
973         * Add for-each-row macro
974
975 12 Dec 2002 Kevin Rosenberg (kevin@rosenberg.net)
976         * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL
977         
978 16 Oct 2002 Kevin Rosenberg (kevin@rosenberg.net)
979         * Add support for SBCL, OpenMCL, and SCL
980         * Add *load-truename* to search path for clsql's
981         compiled libraries.
982
983 01 Sep 2002 Kevin Rosenberg (kevin@rosenberg.net)
984         * Rework use of file types in .asd files
985
986 17 Aug 2002 Kevin Rosenberg (kevin@rosenberg.net)
987         * Add .asd definition files for ASDF users
988
989 31 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
990         * Restructure directories for Common Lisp Controller v3 compatibility
991
992 25 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
993         * Also change case of logical host in loader files
994         * Rework handling of logical pathnames
995         
996 05 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
997         * Change case of logical host
998         
999 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
1000         * clsql-base.system: Added base package that can be used without
1001         high-level SQL commands. Used for adding support for UncommonSQL.
1002         * *.system: Reworked logical pathnames to be more consistent with
1003         Common Lisp Controller.
1004         * debian/*: Completed initial Debian support
1005         
1006 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1007         * sql/classes.cl:
1008         * sql/transactions.cl:
1009         Added transaction support. Functions/macros added:
1010         with-transaction, commit-transaction, rollback-transaction,
1011         add-transaction-commit-hook, add-transaction-rollback-hook
1012
1013 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1014         * sql/sql.cl:
1015         * sql/pool.cl:
1016         * sql/functional.cl:
1017         Added pool support in connect/disconnect and with-database.
1018         Removed with-db-from-pool as with-database can now works with the connections pool
1019
1020 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1021         * sql/sql.cl:
1022         * sql/pool.cl:
1023         * sql/classes.cl:
1024         * sql/package.cl:
1025         Completed connection pool.
1026         Added with-db-from-pool macro.
1027         
1028 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1029         * Multiple files:
1030         Added initial support for connection pool
1031         * sql/transactions.cl
1032         Took transaction code from UncommonSQL and integrated
1033         into CLSQL code. See file for disclaimer about why this
1034         was added.
1035
1036 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1037         * interfaces/postgresql/postgresql-sql.cl:
1038         Fix keyword typo in database-read-large-object
1039         * interfaces/mysql/mysql-loader.cl
1040         Fix loading on Win32
1041         * test-suite/tester-clsql.cl
1042         Fix type coercion of double-float
1043         * doc/*
1044         Added debian docbook catalog, made it the default
1045         
1046 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1047         * interface/postgresql/postgresql-api.cl:
1048         * interface/postgresql/postgresql-sql.cl:
1049         * sql/sql.cl:
1050         * sql/db-interface.cl:
1051         Added large objects support for postgresql.
1052
1053 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1054         * src/postgresql-socket/postgresql-socket-api.cl:
1055         Fixed find-foreign-function call, eliminated crypt warning
1056         * Makefiles:
1057         Multiple improvements
1058         * sql/usql.cl:
1059         Moved functionality from low-level interfaces to this file
1060         via generic functions
1061         * test-suite/tester.cl:
1062         Added test with acl-compat-tester, moved others to old-tests
1063         directory.
1064         
1065 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1066         * src/usql.cl:
1067         Reinstated commented out sections
1068         * interfaces/postgresql/postgresql-loader.cl:
1069         * interfaces/mysql/mysql-loader.cl:
1070         Updated find-forieign-library support.
1071         * interfaces/postgresql-socket/postgresql-socket-package.cl:
1072         Fixed require form for Lispworks (Thanks Marc Battyani!)
1073         * interfaces/postgresql-socket/postgresql-socket-api.cl:
1074         Fixed eval of def-function for crypt library.
1075                 
1076 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1077         * Added interface to support USQL high-level rouines
1078         
1079 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1080         * Separated db-interface and conditions from sql/sql.cl
1081         * Improved foreign library loading testing
1082         * interfaces/postgresql/postgresql-api.cl
1083         Added PQisBusy function
1084         * interfaces/clsql-uffi/clsql-uffi.cl
1085         Fixed sign error for 64-bit processing
1086         
1087 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1088         * interfaces/postgresql-socket/postgresql-socket-api.cl:
1089         Fixes to read-double-from-socket. Added 64-bit integer support.
1090         * test-suite/xptest-clsql.cl
1091         Added testint for 64-bit integers
1092         * Additons to installation docs
1093         
1094 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1095         * interfaces/postgresql-socket/postgresql-socket-api.cl:
1096         Implemented direct socket reading for field type :double
1097         * Added usage information for :types to documentation
1098         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
1099         atol, atof calls
1100         * interfaces/clsql-uffi: Created new directory. Split common
1101         interface routines that use UFFI into this package. Required
1102         especially to support direct reading of 64-bit integers into
1103         bignums and bypassing temporary strings.
1104         * test-clsql.cl: Updated to test postgresql-socket's
1105         read-double-from-socket function.
1106         * test-suite/xptest-clsql.cl
1107         Started work on test suite
1108
1109 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1110         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
1111         mysql-fetch-field-direct Got :auto types working
1112         * interfaces/postgresql/postgresql-api.cl
1113         * interfaces/postgresql-socket/postgresql-socket-api.cl
1114         Added pgsql-field-types enum. Got :auto types working.
1115         * multiple-files
1116         Renamed :field-types to :types.
1117         
1118 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1119         * Added field-types parameter to query, database-query,
1120         database-query-result-set, map-query. Haven't added code
1121         to utilize field types, yet.
1122         * Changed postgresql-socket result set from cons to a structure
1123         * Updated test-clsql.cl to use automated testing with a config
1124         file
1125         * Changed return types of field accessors from cstring to
1126         (* :unsigned-char).  This prepares for being able to use specified
1127         type conversions when taking field data into lisp.
1128         * Added field-type processing for most interfaces. Not done yet.
1129         
1130 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1131         * doc/ref.sgml: Updated MAP-QUERY example to use
1132         *read-default-float-format* (John Foderaro)
1133         * Extensive work to foreign library loaders and .system files to
1134         check for successful loading of foreign libraries.
1135         * Modified test-clsql.cl to allow more modularity and
1136         automated testing in future release.
1137         * mysql/mysql-sql.lisp: Added field types
1138         
1139 01 Jan 2002 Kevin Rosenberg (kevin@rosenberg.net)
1140         * mysql/mysql-sql.lisp:
1141         - Added support for Allegro CL and Lispworks using UFFI layer
1142         - Changed database-connect to use mysql-real-connect. This way,
1143           can avoid using double (unwind-protect)
1144         - Changed database-connect to have MySQL library allocate space
1145           for MYSQL structure. This will make the code more robust in
1146           the event that MySQL library changes the size of the mysql-mysql
1147           structure.
1148
1149