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