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