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