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