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