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