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