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