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