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