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