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