Changelog update: mssql 'date support.
[clsql.git] / ChangeLog
1 2010-02-11  Nathan Bird  <nathan@acceleration.net>
2         * MSSQL: better support for fddl 'date type.
3
4 2010-02-20  Kevin Rosenberg <kevin@rosenberg.net>
5         * Makefile.common, uffi/Makefile, db-mysql/Makefile:
6         Better support OS X Snow Leopard by building universal
7         (x86_64,i386) dylib bundles
8
9 2010-02-08  Kevin Rosenberg <kevin@rosenberg.net>
10         * Version 5.0.2
11         * sql/database.lisp: Fix missing slot-accessor 
12         (Thanks to Stelian Ionescu)
13         * sql/generics.lisp: Add missing keyword to defgeneric
14         (Thanks to Stelian Ionescu)
15
16 2010-02-07  Kevin Rosenberg <kevin@rosenberg.net>
17         * Version 5.0.1
18         * sql/{base-classes,database}.lisp: Add encoding slot for 
19         non-ASCII strings.
20         * db-mysql/mysql-sql.lisp: Use UFFI:FOREIGN-ENCODED-OCTET-COUNT.
21         Requires UFFI version 1.8.2 or above.
22
23 2010-02-06  Kevin Rosenberg <kevin@rosenberg.net>
24         * Version 5.0.0: First release of CLSQL to formally and
25         consistently support non-ASCII strings with encoding of external
26         formats for SQL strings. UFFI version 1.8.1 is higher is required.
27
28         This change may introduce some differences in string handling for
29         people who are using non-ASCII encoded characters.  Thus, because
30         of the risk of BACKWARD INCOMPATIBILITY, the major version number
31         was incremented with this release.
32
33 2010-02-06  Kevin Rosenberg <kevin@rosenberg.net>
34         * tests/test-i18n.lisp: Bind UFFI:*DEFAULT-EXTERNAL-FORMAT*
35         for testing multibyte encodings.
36         * uffi/clsql-uffi.lisp: Changes for UFFI 1.7.4's new support
37         for encoding foreign strings with a specified external format.
38
39 2010-02-06  Kevin Rosenberg <kevin@rosenberg.net>
40         * sql/metaclasses.lisp: If no declared slot type in
41         compute-lisp-type-from-specified-type, then use t as lisp type.
42         Issue noted when testing Clozure CL 1.4.
43
44 2010-02-06  Kevin Rosenberg <kevin@rosenberg.net>
45         * tests/test-init.lisp: Turn off the benign console notices for
46         testing on postgres.
47
48 2010-02-05  Kevin Rosenberg <kevin@rosenberg.net>
49         * clsql-test.asd, tests/{test-i18n,test-init}.lisp:
50         Load test-i18n.lisp and use its tests as long as 'uffi:no-i18n is
51         not present in cl:*features*. This requires UFFI 1.7.2 or above.
52
53 2010-02-05  Kevin Rosenberg <kevin@rosenberg.net>
54         * sql/utils.lisp: Reading #\no-break_space causes an
55         error for non-unicode SBCL. Conditionalize read of
56         #\no-break_space for non-unicode SBCL and 8-bit string
57         Allegro.
58
59 2010-02-03  Kevin Rosenberg <kevin@rosenberg.net>
60         * tests/test-init.lisp: Add *test-report-width* variable
61         and word-wrap skipped test reason field.
62
63 2010-01-29  Kevin Rosenberg <kevin@rosenberg.net>
64         * Version 4.3.3
65         * clsql-cffi.asd: New file that causes CLSQL to use
66         CFFI-UFFI-COMPAT library rather than UFFI. Perform 'asdf:load-op
67         on CLSQL-CFFI rather than CLSQL system to use CFFI-UFFI-COMPAT.
68
69 2010-01-29  Nathan Bird  <nathan@acceleration.net>
70         * tests/*.lisp: A lot more tests and test setup tweaks.
71         * sql/expressions.lisp: output-sql on sql-relational-exp does
72         better arity checking now. (apply #'sql-and some-list) gives
73         better results.
74
75 29 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
76         * sql/oodml.lisp: Fix for UPDATE-RECORD-FROM-SLOTS for normalized
77         view classes
78
79 28 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
80         * Version 4.3.2
81         * Change "normalise" from British spelling for consistency with
82         other American spellings in CLSQL.
83
84 28 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
85         * db-mysql/Makefile: Add directory for Fedora 11/12 on 64-bit
86         platform (Thanks to Michael Pheasant) and remove a 32-bit directory
87
88 28 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
89         * Version 4.3.1
90         * sql/utils.lisp: Ensure Lispworks 6 lock is created in sharing mode
91
92 20 Jan 2009  Nathan Bird <nathan@acceleration.net>
93         * Version 4.3.0
94         * Rewrite tests to use datasets
95
96 07 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
97         * sql/utils.lisp: Changes to support Lispworks 6
98
99 10 Dec 2009  Kevin Rosenberg <kevin@rosenberg.net>
100         * Version 4.2.0
101         * doc/ref-ooddl.lisp: Add needed CDATA escapes
102         * doc/clsql.pdf, doc/html.tar.gz: Build new manuals with
103         normalized view classes.
104
105 10 Dec 2009  Kevin Rosenberg <kevin@rosenberg.net>
106         Large patch from Thijs Oppermann <thijso+clsql@gmail.com> to add
107         support for normalized view classes.  When having view class that
108         inherit from others, CLSQL by default builds tab all the columns
109         from the parent in the child. This patch is meant to normali so
110         that a join is done on the primary keys of the concerned tables to
111         get a set.
112
113 10 Dec 2009  Kevin Rosenberg <kevin@rosenberg.net>
114         * sql/time.lisp: Patch from Oleg Tihonov to SYNTAX-PARSE-ISO-8601
115         to properly parse fractions of seconds.
116
117 10 Dec 2009  Kevin Rosenberg <kevin@rosenberg.net>
118         * sql/time.lisp: Patch from Oleg Tihonov to roll function
119         to properly use USEC argument.
120
121 21 Nov 2009  Kevin Rosenberg <kevin@rosenberg.net>
122         * Version 4.1.2
123         * Makefiles: On 64-bit Linux systems, try to build both 32 and 64-bit
124         interface libraries. This requires the installation of multiarch build tools
125         as well as 32-bit support libraries (libc, libz and libmysqlclient).
126
127 04 Sep 2009  Kevin Rosenberg <kevin@rosenberg.net>
128         * Version 4.1.1
129         * sql/fdml.lisp: Rework do-query to use supplied database
130         parameter when passed a sql-object-query
131         (thanks to JTK <jetmonk@gmail.com>)
132         * sql/generic-postgresql.lisp: Allow optional connect
133         parameters for postgresql databases (thanks to Stephen Compall)
134         * doc/ref-{clsql,connect}.xml, sql/db-interfaces.lisp:
135         Fix transposed letters (thanks to Stephen Compall)
136         * db-mysql/Makefile: Add directory for MacPorts mysql5 port
137         (thanks to Stephen Compall)
138         * sql/database.lisp: Have database-type default be
139         *default-database-type* (thanks to Desmond O. Chang)
140         * sql/transactions.lisp: Improved handlining of nested
141         transactions (thanks to Eli Naeher)
142         * sql/time.lisp: Commit patch to fix parse-iso-8601-duration
143         (thanks to Stephen Compall)
144         * sql/database.lisp: Use :verbose nil for asdf:operate
145         invocation (Thanks to Mackram Raydan)
146         * sql/metaclasses.lisp: Rework initialize-instance for
147         view-class-direct-slot-definition (thanks to Stephen Compall)
148
149 31 Aug 2009  Kevin Rosenberg <kevin@rosenberg.net>
150         * sql/db-interface.lisp: Fix spelling error (thanks to
151         David Thompson)
152         * clsql-mysql.asd/db-mysql/mysql-loader.lisp: Commit
153         patch from Andreas Franke to honor windows drive letter
154         when loading clsql_mysql C library.
155
156 31 Aug 2009  Kevin Rosenberg <kevin@rosenberg.net>
157         * Version 4.1.0
158         * db-mysql/mysql-{sql,api}.lisp,db-mysql/clsql_mysql.c:
159         Latest version of mysqlclient once again changed the C
160         structures from which the mysql backend reads data.
161         Rather than adding yet another structure definition which
162         is enabled by the client version as read by mysql-client-info.lisp,
163         the mysql backend has been re-written to ignore in the internal
164         C structures. Instead, C wrapper functions for slot access have
165         been added to clsql_mysql.c and are used by mysql-sql.lisp to
166         access the internals of C structures. This adds a bit of overhead,
167         but completely separates the lisp code from trying to keep up
168         with the continually changing internal C structure of mysql.
169         All tests in the test suite executed correctly with this change.
170
171 31 Aug 2009  Kevin Rosenberg <kevin@rosenberg.net>
172         * Version 4.0.6
173         * sql/database.lisp: Fix syntax on process-lock (thanks to
174         Stian Sletner)
175         * db-mysql/mysql-sql.lisp: Allow use of database parameter
176         in database-list function (thanks to Michael Pheasant)
177         * sql/oodml.lisp: Allow NULL values for floating-point fields
178         (thanks to Jan Rychter)
179
180 02 Jun 2009  Kevin Rosenberg <kevin@rosenberg.net>
181         * Version 4.0.5
182         * sql/database.lisp: Add process-lock for deleting database from
183         a pool (thanks to Ralf Mattes).
184
185 25 Feb 2008  Kevin Rosenberg <kevin@rosenberg.net>
186         * Version 4.0.4
187         * sql/expressions.lisp: Remove stray form (thanks to Samuel Ward)
188
189 12 Dec 2007  Kevin Rosenberg <kevin@rosenberg.net>
190         * sql/expressions.lisp: Bind *in-subselect* when outputting
191         selections (patch from unknown source).
192         
193 11 Dec 2007  Kevin Rosenberg <kevin@rosenberg.net>
194         * Version 4.0.3
195         * sql/metaclasses.lisp: Unify base-table processing by extracting 
196         the correct code from initialize-instance :around into the helper
197         function set-view-table-slot. Call that function also in
198         reinitialize-instance :around replacing erroneous code discovered
199         by Josh Feinstein.
200         
201 17 Nov 2007  Kevin Rosenberg <kevin@rosenberg.net>
202         * BUGS: Add note about benefit of using configure file to create
203         Makefiles (suggestion from Joe Corneli)
204         
205 22 Oct 2007  Kevin Rosenberg <kevin@rosenberg.net>
206         * Version 4.0.2
207         * db-postgresql/postgresql-sql.lisp: Patch from Gabriele Favalessa based on
208         Andrew Golding suggestion for more informative :error-id slot.
209         
210 17 Sep 2007  Kevin Rosenberg <kevin@rosenberg.net>
211         * Version 4.0.1
212         * db-mysql/mysql-sql.lisp: Convert query to uffi cstring (thanks to
213         Albert Krewinkel).
214         * doc/Makefile, doc/html.xsl: Change output encoding from ISO-8859-1 to UTF-8
215         
216 14 Sep 2007  Kevin Rosenberg <kevin@rosenberg.net>
217         * Version 4.0.0: Major version increase to warn of potential
218         backwards incompatibility.
219         * NEWS: Document potentional backward incompatible changes
220         * db-mysql/mysql-sql.lisp: Changes session SQL mode to ANSI immediately
221         after connecting. This may break compatibility with some applications
222         who are using non-ANSI features with MySQL. This change is required to
223         properly support view-classes using a string as their :base-table
224         attribute. This allows users to specify the case of table names. 
225         This is feature is even more essential for MySQL itself since MySQL
226         uses case-sensitive table names. Use connection-based database-create
227         and database-destroy rather than trying to invoke command-line mysql 
228         utility. Remove automatic upcasing of strings from list-indices. 
229         * db-postgresql/postgresql-sql.lisp: Use connection-based 
230         database-create and database-destroy rather than trying to invoke
231         command-line utilities.
232         * db-postgresql-socket/postgresql-socket-sql.lisp: Use
233         database-execute-command rather than execute-command for
234         database-{create,destroy}. Connect to postgres database
235         rather than template1 for those database creation/deletion.
236         * sql/metaclasses.lisp: Store the string value of :base-table if a 
237         string is provided. Perform sql-escape at time of view-table name
238         creation.
239         * tests/test-init.lisp: Use "ej_join" as a string, rather than a 
240         symbol, since "ej_join" is specified as :base-table. Clear the
241         expression output-cache in case the code for generating sql output
242         has changed.
243         * test/test-oodml.lisp: whitespace fix
244         * sql/ooddl.lisp: Use quoted string for primary key constraint if
245         table name is specified as a string.
246         * sql/oodml.lisp: Don't convert a string view-table name to database's 
247         default case.
248         * sql/expressions.lisp: Properly handle table and attribute identifiers
249         when they are a string. Do not change case of symbols to match database
250         default case.
251         * sql/operations.lisp: Change multiword symbols to upper case.
252         * sql/fddl.lisp: Quote base-table if a string to preserve case
253         for drop-table and create-table.
254         * tests/test-syntax.lisp: Add tests of low-level string attribute
255         identifiers.
256         
257 20 Jul 2007  Kevin Rosenberg <kevin@rosenberg.net>
258         * Version 3.8.6
259         * db-oracle/oracle-loader.lisp: Rework use of ORACLE_HOME directory
260         (problem noted on clsql-devel by icardo Boccato Alves)
261         * sql/pool.lisp: Remove incorrect keyword
262         * sql/database.lisp: Rework WITH-DATABASE to not make the database the
263         default database (reported by Saurabh Nanda and Chaitanya Gupta)
264         * doc/ref-connect.lisp: Update the documentation to WITH-DATABASE to
265         emphasis that make-default has a default value of nil.
266         * sql/transaction.lisp: Adjust commit/rollback messages for Microsoft
267         SQL Server. (patch from Nathan Bird)
268         * sql/metaclasses.lisp: Use finalize-inheritance hack on SBCL because
269         of trouble with def-view-class compilations (patch from Nathan Bird)
270         
271 15 Jul 2007  Kevin Rosenberg <kevin@rosenberg.net>
272         * Version 3.8.5
273         * db-mysql/mysql-loader.lisp: Revert previous change since libmysql is
274         not dynamically loaded on Windows
275         
276 22 Jun 2007  Kevin Rosenberg <kevin@rosenberg.net>
277         * Version 3.8.4
278         * db-mysql/mysql-loader.lisp: Do not bother loading libmysqlclient since
279         that library is dymically linked to clsql-mysql library. Thus, the mysql
280         library will be automatically loaded. This has only been tested on Linux,
281         thus far.
282
283 29 May 2007  Kevin Rosenberg <kevin@rosenberg.net>
284         * tests/test-fddl.lisp: Add :order-by for :fddl/big/1 as
285         reported by Ricardo Boccato Alves
286
287 02 May 2007  Kevin Rosenberg <kevin@rosenberg.net>
288         * sql/database.lisp: Add ability of WITH-DATABASE to return
289         multiple values (patch from Liam Healy)
290         
291 25 Apr 2007  Kevin Rosenberg <kevin@rosenberg.net>
292         * Version 3.8.3
293         * doc/connect.xml: variable description fix by Liam Healy
294         * db-sqlite3/sqlite3-api.lisp, uffi/clsql-uffi-loader.lisp:
295         Apply patches from Marcus Pierce to reduce load-time warnings
296         * sql/package.lisp: Export iso-timestring as requested by Kevin Blaisdell
297
298 23 Mar 2007  Kevin Rosenberg <kevin@rosenberg.net>
299         * Version 3.8.2
300         * sql/db-postgresql-socket-api.lisp: Change read-socket-sequence to
301         disable wide characters for crypt salt sequence on SBCL, based
302         on patch from Lars Nostdal.
303
304 26 Jan 2007  Kevin Rosenberg <kevin@rosenberg.net>
305         * Version 3.8.1
306         * sql/pool.lisp: Test pooled connection when popped from
307         the pool to ensure the connection still works. Currently, implemented
308         only for MySQL.
309
310 17 Jan 2007  Kevin Rosenberg <kevin@rosenberg.net>
311         * db-mysql/Makefile: Add potential mysql directories
312
313 31 Dec 2006  Kevin Rosenberg <kevin@rosenberg.net>
314         * sql/metaclasses.lisp: Remove usused saved-initargs
315         * clsql.asd: Also check ~/.clsql-init.lisp at load-time (usually used to
316         push search libraries)
317         
318 30 Dec 2006  Kevin Rosenberg <kevin@rosenberg.net>
319         * Version 3.8.0: BACKWARD INCOMPATABLE CHANGE!
320         * db-postgresql/postgresql-{api,loader,sql,package}.lisp:
321         Apply patch from Edi Weitz to avoid conflict with new Lispworks 5
322         POSTGRESQL package name. CLSQL's new package will be PGSQL, however
323         on non-Lispworks platforms, the nickname POSTGRESQL will still be
324         available. Applications directly using low-level POSTGRESQL package
325         are recommended to use the new PGSQL name.
326         * db-oracle/oracle-{api,sql}.lisp, sql/{expressions,loop-extension}.lisp,
327         Apply patch from Edi Weitz to reduce compiler warnings.
328         
329 28 Dec 2006  Kevin Rosenberg <kevin@rosenberg.net>
330         * Version 3.7.9
331         * sql/expressions.lisp: Commit patch from Edi Weitz to
332         use *default-database* for SQL-OUTPUT if no database is
333         explicitly passed to function.
334         * uffi/clsql-uffi-loader.lisp: Change load order to first try
335         plain name/type before attempting user-specified paths (patch
336         from Edi Weitz)
337         * uffi/ptrbits.c: New file to return number of bits in an pointer
338         * uffi/Makefile: use intbits to name .so file based on bit size.
339         Build both 32-bit and 64-bit libraries on 64-bit platform.
340         
341 30 Nov 2006  Kevin Rosenberg <kevin@rosenberg.net>
342         * Version 3.7.8
343         * db-sqlite3/sqlite3-sql.lisp: Commit patch from Edi Weitz fixing
344         error display
345
346 16 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
347         * Version 3.7.7
348         * db-postgresql/postgresql-sql.lisp: Remove 
349         uffi:convert-foreign-to-native wrapper since using cstring for
350         PQresultErrorField
351
352 16 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
353         * Version 3.7.6
354         * db-postgresql/postgresql-api.lisp: Fix UFFI return type for
355         PQresultErrorField foreign function.
356
357 16 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
358         * Version 3.7.5
359         * doc/intro.xml: Update supported platforms.
360         * db-postgresql/postgresql-{package,api,sql}.lisp: Apply
361         changes from Andew Golding to use a more-specific error code
362         from PostgreSQL than the generic fatal error code of the result set.
363
364 03 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
365         * sql/syntax.lisp: Commit patch from Marcus Pearce to improve
366         readtable modifications
367
368 02 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
369         * sql/syntax.lisp: Check that original reader syntax functions
370         stored before trying to restore them.
371         
372 20 Sep 2006  Kevin Rosenberg <kevin@rosenberg.net>
373         * sql/syntax.lisp: Apply patch from Marcus Pearce to correctly
374         display sql reader syntax.
375
376 06 Sep 2006  Kevin Rosenberg <kevin@rosenberg.net>
377         * uffi/clsql-uffi-loader.lisp, db-mysql/mysql-loader.lisp: Change from using *features*
378         to decide on 64-bit platform and check size of most-positive-fixnum instead.
379         Needed to support clisp amd64.
380
381 03 Sep 2006  Kevin Rosenberg <kevin@rosenberg.net>
382         * Version 3.7.1
383         * sql/metaclasses.lisp: Rework slot type's to be more AMOP
384         compatibile. Add warning for a metaclass condition that should
385         not occur.
386         * sql/time.lisp: Fixed symbol case inconsistency causing problem
387         in AllegroCL's modern lisp. First sign of bug noted by
388         Joel Reymond on clsql-devel.
389         * clsql.asd: Make time.lisp depend on utils.lisp
390
391 31 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
392         * db-mysql/mysql-loader.lisp: Apply patch from Marcus Pearce to push 
393         *library-file-dir* to CLSQL's library path.
394
395 30 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
396         * Version 3.7.0: New platforms supported: SBCL/Win32, CLISP/Win32, CLISP/Cygwin,
397         CLISP/Linux x86, CLISP/Linux amd64, OpenMCL amd64. CLISP support requires the
398         latest development versions of CLISP, cffi, and cffi-uffi-compat packages.
399         * Makefile.common: Add OS detection
400         * uffi/make.sh, db-mysql/make.sh: Remove files
401         * uffi/Makefile, db-mysql/Makefile: Add support for cygwin compilation.
402         Refactor to remove need to make.sh shell scripts. 
403         * clsql.asd: Add support for loop extensions for clisp. Support clisp via cffi.
404         * sql/loop-extension.lisp: Define loop-record-iteration-path in CLSQL-SYS 
405         package rather than CL-USER. Add support for ansi-loop on clisp. 
406         * sql/ansi-loop.lisp: New file to support iteration on clisp. 
407         * db-mysql/mysql-api.lisp: Remove old mysql C API functions that no
408         longer exist in the mysql client library.
409         * doc/ref-fdml.lisp: Correct default field-type.
410         * sql/expressions.lisp: Use database-output-as-type if value exists for boolean output.
411         Fixed bug with noted with MySQL 5.0.24 and boolean values.
412         
413 28 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
414         * Version 3.6.7
415         * sql/oodml.lisp: Remove high debugging level declaration
416
417 14 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
418         * Version 3.6.6
419         * sql/generic-postgresql.lisp: Fix assumption that postgres user id
420         is always 1. Fixes problem noted with PostgreSQL 8.1.
421
422 12 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
423         * Version 3.6.5
424         * sql/generic-postgresql.lisp: Add slot for has-table-pg_roles to
425         lazily cache if pg_roles tables exist. Selectively use SQL from
426         Joel's previous patch if pg_roles table exists. Should now work
427         with both postgresql 7.4 and 8.x.
428         
429 12 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
430         * Version 3.6.4
431         * clsql.asd: Add support for c:\etc\clsql-init.lisp as possible
432         local initialization file
433         * db-mysql/mysql-loader.lisp: Remove former method of using pathnames
434         as name candidates.
435         * db-odbc/odbc-api.lisp: Work-around Allegro/Windows FFI bug
436         that generates incorrect integer return type
437         * sql/generic-postgresql.lisp: Revert patch from Joel Reymont since
438         it fails on versions of postgresql that lack the pg_role table
439         
440 07 Jul 2006  Kevin Rosenberg <kevin@rosenberg.net>
441         * Version 3.6.3
442         * sql/transactions.lisp: Important typo fix from Alexey Antipov
443         for database-start-transaction
444         
445 04 Jul 2006  Kevin Rosenberg <kevin@rosenberg.net>
446         * Version 3.6.2
447         * db-postgresql/postgresql-sql.lisp: Apply patch from Vladimir Sekissov
448         to close connection when failing to connect to database.
449         * sql/generic-postgresql.lisp: Apply patch from Joel Reymont
450         to avoid dropping system views.
451         * sql/oodml.lisp: Apply patch from Joel Reymont to avoid listify
452         a nil value [patch sponsored by Flektor]
453         * clsql-uffi.asd, uffi/make.sh: Patch from Richard Kreuter
454         for netbsd compilation
455         
456 15 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
457         * doc/ref-ooddl.xml: Add documentation for :db-reader and :db-writer
458         slots for def-view-class macro [as reported missing by Thomas Fischbacher].
459         
460 09 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
461         * db-postgresql-socket/postgresql-socket-api.lisp:
462         Apply patch from Marko Kocic adding the socket creation
463         function needed for CLISP.
464
465 08 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
466         * Version: 3.6.0 (requires UFFI v1.5.11 or greater)
467         * db-oracle/metaclasses.lisp: Patch from James Bielman for
468         checking slot constraints.
469         * db-oracle/oracle-{api,sql}.lisp: Avoid dead pointers on loading
470         saved openmcl images (based on patch from James Bielman)
471
472 06 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
473         * doc/ref-fdml.xml: Documentation patch from Marcus Pearce for limit keyword
474         
475 03 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
476         * Version 3.5.7
477         * sql/time.lisp: Apply patch from Aleksandar Bakic to extended
478         duration parsing and unparsing to include year and month.
479         * clsql-uffi.asd, uffi/clsql-uffi-loader.lisp: Apply patch from Nathan Bird
480         improving library search on Windows platform.
481         * doc/ref-fdml.xml, /doc/TODO, tests/test-fdml.lisp, tests/test-init.lisp:
482         Apply patch from Marcus Pearce documenting and testing :limit and :offset for SELECT
483
484 20 Mar 2006  Kevin Rosenberg <kevin@rosenberg.net>
485         * Version 3.5.6
486         * clsql-postgresql-socket.asd, 
487         * db-postgresql-socket/postgresql-socket-package.lisp: 
488         Use the cl-md5 package on all platforms. Based on report 
489         from Alan Caulkins.
490         
491 09 Mar 2006  Kevin Rosenberg <kevin@rosenberg.net>
492         * Version 3.5.5
493         * uffi/make.sh, db-mysql/make.sh: Add GNU uname
494         
495 28 Feb 2006  Kevin Rosenberg <kevin@rosenberg.net>
496         * Version 3.5.4
497         * sql/metaclasses.lisp: Apply patch from Friedrich Dominicus to
498         fix accessor for new versions of SBCL
499         * db-oracle/oracle-sql.lisp: Apply patch from James Bielman
500         to improving parsing of time.
501         * db-db2/db2-constants.lisp: Change NULL_HANDLE has suggested
502         by Harold Lee.
503         * db-oracle/oracle-dbi.lisp: Add support for SQL BIT type
504         as noted by Russ Tyndall.
505         
506 16 Jan 2006  Kevin Rosenberg <kevin@rosenberg.net>
507         * Version 3.5.3
508         * sql/time.lisp: Commit patch from Aleksandar Bakic
509         to properly handle destructive flag
510         * db-postgresql-socket/postgresql-socket-api.lisp: Apply patch
511         from Steven Harris for socket files with SBCL.
512         * sql/pool.lisp: Apply patch from Vladimir Sekissov so that
513         new connections added to the pool do not become the *default-database*
514         * sql/connect.lisp: Optionally set *default-database* for pooled
515         connection when make-default is generalized true.
516         
517 23 Dec 2005  Kevin Rosenberg <kevin@rosenberg.net>
518         * Version 3.5.1
519         * sql/expressions.lisp: Ensure table names are properly escaped
520         before comparing -- fixes bug reported by Asbjørn Bjørnstad
521         on CLSQL-Devel.
522
523 02 Dec 2005  Kevin Rosenberg <kevin@rosenberg.net>
524         * sql/generic-postgresql.lisp: improved decoding of table attribute
525           parameters [from Vladimir Sekissov]
526         * sql/metaclasses.lisp: check that metaclass is standard-db-class or
527           it's subclass to prevent adding standard-db-object to supers if
528           somebody in the path has it already when metaclass inherited from
529           standard-db-class. [from Vladimir Sekissov]
530         
531 26 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
532         * Version 3.5.0
533         * tests/test-init.lisp, tests/test-fddl.lisp, tests/test-fdml.lisp, 
534         * db-odbc/odbc-api.lisp, db-odbc/odbc-ff-interface.lisp,
535         * db-odbc/odbc-package.lisp, db-odbc/odbc-constants.lisp
536         * db-odbc/odbc-dbi.lisp, db-odbc/odbc-sql.lisp
537         * sql/fddl.lisp, sql/generic-odbc.lisp, sql/db-interface.lisp
538         * sql/transaction.lisp, sql/package.lisp, sql/time.lisp
539         Commit patch from Dominic Robinson providing support for 
540         Microsoft SQL Server
541         * doc/csql.lisp: Fix typo in slot name
542         
543 24 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
544         * Version 3.4.7
545         * sql/time.lisp: Commit patch from Aleksandar Bakic for
546         correct handling of decode-time usec value  
547         * clsql-mysql.asd: Commit patch from Harald Hanche-Olsen to
548         correct the name of the shared library file.
549         
550 16 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
551         * version 3.4.6
552         * sql/metaclasses.lisp: Avoid calling change-class on
553         effective-slot-definitions on sbcl to conform to sbcl 0.9.6.38
554         changes.
555         
556 15 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
557         * Version 3.4.5
558         * sql/expressions.lisp: Patch from James Biel to add subselects
559
560 14 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
561         * Version 3.4.4 [ Requires UFFI 1.5.7+] 
562         * db-oracle/oracle-{api,sql}.lisp: Patch from James Biel
563         to fix lifetime of foreign strings for Oracle calls
564
565 13 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
566         * Version 3.4.3
567         * db-oracle/oracle-{api,sql}.lisp: Patch from James Biel
568         to improve performance
569         
570 12 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
571         * Version 3.4.2
572         * clsql-uffi.asd: Patch from James Biel improving loading
573         * db-oracle/oracle-{api,sql}.lisp: Patch from James Biel
574         to support 64-bit lisps
575         
576 12 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
577         * Version 3.4.1
578         * sql/expressions.lisp: Escape numbers to SQL strings
579         at expression level.
580         
581 11 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
582         * Version 3.4: Add MySQL 5 support
583         * db-mysql/mysql-client-info.lisp: Recognize MySQL 5
584         * db-mysql/mysql-sql.lisp: Add support for views in MySQL 5
585         * doc/mysql-macosx-notes.txt: New document from Martin Brooks
586         
587 7 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
588         * src/time.lisp: Apply patch from Aleksandar Bakic for ROLL
589         function.
590         * BUGS: Added report for update-object-joins by Aleksandar Bakic
591         
592 4 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
593         * Version 3.3.4 [UFFI >= 1.5.5 needed]
594         * db-odbc/odbc-api.lisp: Apply patch from Yaroslav Kavenchuk
595         to add missing #\' character.
596         * clsql.asd: Add support for CLSQLINIT environmental variable,
597         based on patch from Yaroslav Kavenchcuk. New version of UFFI
598         required.
599         
600 30 Oct 2005  Kevin Rosenberg <kevin@rosenberg.net>
601         * Version 3.3.3
602         * sql/oodml.lisp: Apply patch from Drew Crampsie to fix
603         update-objects-joins when using the :target-slot attribute
604         
605 26 Oct 2005  Kevin Rosenberg <kevin@rosenberg.net>
606         * Version 3.3.2
607         * sql/expressions.lisp: Avoid parenthesis on multiple group-by fields
608         as noted by Harald Hanche-Olsen.
609         * tests/test-syntax.lisp: Add test for multiple field group-by
610         
611 25 Oct 2005  Kevin Rosenberg <kevin@rosenberg.net>
612         * Version 3.3.1
613         * sql/time.lisp: Commit patch from Alan Shields to
614         display escape string on wall-time display only when *print-escape*
615         is true.
616         
617 11 Oct 2005  Kevin Rosenberg <kevin@rosenberg.net>
618         * sql/metaclasses.lisp: Commit patch from Will to
619         properly set db-reader slot in effective-slot-definition
620         * sql/expressions.lisp: Commit patch from Alan Shields
621         adding make-load-form for sql-relational-exp
622         * sql/generic-postgresql.lisp: Commit patch from Aleksandar Bakic
623         adding support for new NUMBER type
624         
625 17 Sep 2005  Kevin Rosenberg <kevin@rosenberg.net>
626         * Version 3.3.0
627         * sql/time.lisp: Apply patch from Alan Shields adding DATE type.
628         * doc/ref-ooddl.xml: Documentation of new type
629         * notes/add-type-hints.txt: New file from Alan Shields
630         * sql/fddl.lisp: Add owner keyword to drop-table as suggested
631         by Francis Leboutte
632         * db-postgresql-socket/postgresql-socket-sql.lisp: Fix database-probe
633         as noted by Francis Leboutte. Similar fix applied to db-mysql and
634         db-postgresql.
635         * sql/expressions.lisp: Allow string table names for output as
636         contributed by Francis Leboutte.
637         * examples/clsql-tutorial.lisp: Support :postgresql-socket as noted 
638         by Francis Leboutte
639         
640 08 Sep 2005  Kevin Rosenberg <kevin@rosenberg.net>
641         * Version 3.2.4
642         * doc/into.xml: Change download from ftp to http protocol
643
644 08 Sep 2005  Kevin Rosenberg <kevin@rosenberg.net>
645         * Version 3.2.3
646         * db-oracle/oracle-sql.lisp: Correction for v3.2.2 changes by
647         Edi Weitz
648
649 08 Sep 2005  Kevin Rosenberg <kevin@rosenberg.net>
650         * Version 3.2.2
651         * db-oracle/oracle-sql.lisp: Add check for zero increment as
652         suggested by Edi Weitz. Add missing database-sequence-last function
653         as noted and tested by Edi Weitz. Ensure that UFFI buffer is freed
654         in handle-oci-error. Add unwind-protect to sql-stmt-exec. Free UFFI
655         stmthp object when query cursor is freed with OCI.
656
657 22 Aug 2005  Kevin Rosenberg <kevin@rosenberg.net>
658         * uffi/clsql-uffi-loader.lisp: Commit patch from astor@pvv.ntnu.no to
659         display search path when error occurs loading foreign library.
660         
661 05 Jul 2005  Kevin Rosenberg <kevin@rosenberg.net>
662         * Version 3.2.1
663         * doc/appendix.xml: Incorporate Edi Weitz's notes into documentation
664         with changes to support case-sensitive lisp implementations. Add
665         paragraph on using /etc/clsql-init.lisp site initialization file.
666         * clsql.asd: Load file /etc/clsql-init.lisp, if it
667         exists, after package is loaded to set site-specific configuration
668         
669 2005-06-24  Edi Weitz  <edi@agharta.de>
670         * sql/db-interface.lisp: Added new special variable
671         *FOREIGN-LIBRARY-SEARCH-PATHS* and function PUSH-LIBRARY-PATH to
672         manipulate it.
673         * sql/package.lisp: Export these.
674         * uffi/clsql-uffi-loader.lisp: Used new variable; changed order of
675         libs.
676         * db-mysql/mysql-loader.lisp: Changed order of libs.
677
678 09 Jun 2005 Kevin Rosenberg <kevin@rosenberg.net>
679         * Version 3.2.0: REQUIRES UFFI VERSION 1.4.38 OR HIGHER
680         * clsql-mysql.asd: Renamed clsql/mysql interface library from
681         mysql to clsql_mysql
682         * clsql-uffi.asd: Renamed clsql/uffi interface library from
683         mysql to clsql_uffi
684         * uffi/clsql_uffi.c: Renamed from uffi.c
685         * db-mysql/clsql_mysql.c: Renamed from mysql.c
686         * db-mysql/Makefile, db-mysql/Makefile.msvc, db-mysql/mysql-loader.lisp: Rename shared library
687         * uffi/Makefile, uffi/Makefile.msvc, uffi/uffi-loader.lisp: Rename shared library
688         * db-*/*-loader.lisp: Commit big patch from Edi Weitz to remove
689         absolute pathnames when searching for foreign libraries.
690         foreign library loading.
691         
692 07 Jun 2005 Kevin Rosenberg <kevin@rosenberg.net>
693         * Version 3.1.16
694         * db-mysql/mysql-api.lisp: Commit patch from Espen Wiborn
695         to support UTF-8 on sbcl unicode.
696         
697 18 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
698         * Version 3.1.15
699         * sql/time.lisp: Fix bug in roll that caused failure in test suite
700
701 17 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
702         * Version 3.1.14
703         * sql/oodml.lisp: Properly handle when db-writer is NIL
704
705 11 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
706         * sql/expressions.lisp: Avoid using simple-string declaration when
707         a non-simple string may be encountered. [issue noted by 
708         will@cesmail.net] Add a simple-string declaration for a local
709         string generated.
710         
711 06 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
712         * sql/oodml.lisp: Change db-writer and db-reader processing to accept
713         a symbol as well as function to serve as a function designator
714         [issue noted by will@cesmail.net]
715
716 05 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
717         * Version 3.1.13
718         * sql/time.lisp: Fix error in submitted patch which caused error
719         in timestrings with 19 or less characters.
720         
721 27 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
722         * Version 3.1.12
723         * db-postgresql-socket/postgresql-api.lisp: Commit patch from Tim Howe
724         to fix read-socket-sequence on non-sb-unicode sbcl.
725         
726 26 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
727         * Version 3.1.12
728         * sql/time.lisp: Commit patch from Daniel Lowe which adds support
729         for fractional seconds which is required by PostgreSQL
730         * db-postgresql/postgresql-loader.lisp: Add library path for Windows
731         
732 25 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
733         * sql/csql.lisp: Update URL for "SQL for Web Dummies" [Sean Champ]
734         
735 24 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
736         * Version 3.1.11
737         * sql/syntax: Commit patch from Alan Shields to supress reader
738         macros when *read-supress* is T.
739         
740 13 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
741         * Version 3.1.10
742         * db-postgresql-socket/postgresql-socket-api.lisp: Commit patch
743         from Janis Dzerins to support unicode on SBCL
744         * sql/syntax: Commit patch from Alan Shields to improve reporting
745         of invalid syntax statements.
746         
747 06 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
748         * Version 3.1.9
749         * db-mysql/mysql-sql.lisp: Add port to connection specification
750         based on patch from Dave Watson
751         * doc/appendix.xml: Document MySQL port parameter to connection spec
752
753 03 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
754         * Version 3.1.8
755         * sql/time.lisp: Patch from Keith James for parsing ISO-8601 timestamps
756         
757 18 Mar 2005 Kevin Rosenberg <kevin@rosenberg.net>
758         * sql/oodml.lisp: Add missing database argument [Patch from
759         Alan Caulkins]
760         
761 03 Mar 2005 Kevin Rosenberg <kevin@rosenberg.net>
762         * sql/oodml.lisp: Improve database priority in 
763         update-records-from-instance [Patch from Walter C. Pelissero]
764         
765 17 Feb 2005 Kevin Rosenberg <kevin@rosenberg.net>
766         * Version 3.1.7
767         * sql/package.lisp: Export database-reconnect from clsql-sys
768
769 08 Feb 2005 Kevin Rosenberg <kevin@rosenberg.net>
770         * sql/oodml.lisp: Use explicit database in fault-join-target-slot
771         [Patch from Walter Pelissero]
772         
773 29 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
774         * db-postgresql/postgresql-loader.lisp: Add additional
775         directories to Fink on darwin [patch from Cyrus Harmon].
776         
777 29 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
778         * Version 3.1.6
779         * sql/oodml.lisp: Clear view instance cache when delete-instance-records
780         is invoked [suggested by Alan Shutko].
781         * uffi/clsql-uffi-loader.lisp: Improvements for loading with SBCL X86-64
782         * sql/metaclasses.lisp: Don't change case of a :base-table string supplied
783         to def-view-class [fix suggested by Fred Gilham].
784         
785 25 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
786         * tests/*.lisp: Change Vladamir to Vladimir per Cyrus Harmon's
787         suggestion.
788         * sql/utils.lisp: Fix unnecessary consing noted by Fred Gilham.
789         * doc/*.xml: Fix spelling of Vladimir
790         
791 24 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
792         * doc/bookinfo.xml, doc/csql.xml, doc/intro.xml: Update links
793         now that LispWorks is an independant company [noted by
794         Martin Thornquist]
795         
796 22 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
797         * db-sqlite/sqlite-sql.lisp, db-sqlite3/sqlite3-sql.lisp:
798         Better support for 64 bit environments
799
800 05 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
801         * Version 3.1.5
802         * sql/metaclass.lisp: Make t the default value of :set
803         [noted by Cyrus Harmon]
804
805 28 Dec 2004 Kevin Rosenberg <kevin@rosenberg.net>
806         * Version 3.1.4
807         * uffi/clsql-uffi.lisp: Add support for unsigned integers
808         * db-mysql/mysql-sql.lisp: Add support for detecting/marking
809         unsigned integers. Apply patch from Yannick Gingras to
810         implement database-sequence-last.
811         
812 26 Dec 2004 Kevin Rosenberg <kevin@rosenberg.net>
813         * doc/ref-fdml.lisp: Fix variable tag name to varname
814         [noted by Eduardo Munoz]
815         * db-mysql/mysql-loader.lisp: Handle library paths for 64-bit systems
816         
817 06 Dec 2004 Kevin Rosenberg <kevin@rosenberg.net>
818         * Version 3.1.2
819         * sql/ooddl.lisp: Accept patch from Klaus Harbo for
820         update-object-joins.
821         * sql/metaclass.lisp: Remove unnecssary (and runtime error
822         causing) change-class invocation when running on CLISP.
823         * db-mysql/mysql-api.lisp: Commit patch from Paul Werkowski
824         to fix structure name.
825         * sql/database.lisp: More specific error message with trying
826         to use a database value of NIL.
827         * sql/expressions.lisp: Accept a string for the table name
828         in (sql-output sql-delete database) [suggested by Ed Symanzik].
829         
830 11 Nov 2004 Kevin Rosenberg <kevin@rosenberg.net>
831         * Version 3.1.1
832         * sql/generic-postgresql.lisp: Commit patch from Chris Capel to
833         ignore columns which have been dropped.
834         * clsql-postgresql-socket.asd, db-postgresql-socket/postgresql-socket-package.lisp:
835         Use sb-md5 package on SBCL, recommended by Chris Capel
836         
837 09 Nov 2004 Kevin Rosenberg <kevin@rosenberg.net>
838         * Version 3.1.0 released: New SQLite3 backend by Aurelio Bignoli
839         * doc/appendix.xml: Document SQLITE3 backend, patch by Aurelio Bignoli
840         * sql/operations.lisp: Add lower and upper SQL functions [Daniel Lowe].
841         
842 08 Nov 2004 Kevin Rosenberg <kevin@rosenberg.net>
843         * sql/expressions.lisp: Fix slot name [thanks to Daniel Lowe]
844
845 31 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
846         * clsql-sqlite3, db-sqlite3/*: NEW BACKEND
847         contributed by Aurelio Bignoli
848
849 23 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
850         * sql/oodml.lisp: Commit patch from Walter Pelis
851         to use an object's database for a select on its slot.
852         
853 20 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
854         * uffi/uffi.c, uffi/clsql-uffi.lisp: Commit patch from
855         Aurelio Bignoli to fix negative 64-bit integers
856         
857 07 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
858         * db-mysql/mysql.c: Fix parameters in bind_param call
859
860 07 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
861         * uffi/clsql-uffi.lisp: Add support for :blob result-type
862         * db-mysql/mysql-sql.lisp: Add support for :blob
863         result-type
864         
865 04 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
866         * db-mysql/mysql-sql.lisp, db-db2/db2-sql.lisp: Add
867         missing quotes for types in code that is still in development
868         (thanks to Joerg Hoehle)
869         
870 03 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
871         * Version 3.0.8 released
872         * db-sqlite/sqlite-*.lisp: Apply patch from
873         Aurelio Bignoli with improvements
874         
875 01 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
876         * multiple: Apply patch from Joerg Hoehle with multiple
877         improvements.
878         
879 01 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
880         * Version 3.0.7 released
881         * sql/oodml.lisp, sql/package.lisp, db-mysql/mysql-objects.lisp:
882         Add support for mediumint.
883         * sql/metaclass.lisp: Rework CLISP MOP handling
884         * sql/ooddl.lisp: Work-around to have CLISP finalize standard-db-class
885         
886 28 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
887         * sql/metaclass.lisp: Support CLISP's attribute name
888         for the type field in direct class slots
889         
890 27 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
891         * Version 3.0.6 released
892         * BUGS: New file. Document suspected SIGPIPE
893         interaction between SBCL and libpq used in
894         postgresql backend.
895         * doc/ref-fdml.lisp: Document the :caching and :refresh
896         keywords of the SELECT function.
897         * doc/ref-ooddml.lisp: Document the new *default-caching*
898         variable.
899         * sql/package.lisp: Export *default-caching*
900         * sql/oodml.lisp: Use *default-caching* to 
901         control default caching behavior.
902         
903 21 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
904         * Version 3.0.5 release
905         * doc/appendix.xml: Add note about loading Oracle8 version
906         * db-oracle/oracle-loader.lisp: Support Oracle8 based on
907         data from David Young.
908
909 10 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
910         * doc/Makefile, doc/catalog-darwin.xml: Apply
911         patch from Cyrus Harmon for building docs on Mac OS X
912         * sql/package.lisp: Add new (pre-release) clisp MOP package     
913         
914 09 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
915         * Version 3.0.4 Release
916         * multiple: Remove superfluous quotes in UFFI def-type
917         and def-foreign-type forms.
918         
919 07 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
920         * Version 3.0.3 Release
921         * db-postgresql-socket/postgresql-socket-api.lisp: Commit patch
922         from Tagore Smith to call force-output after sending authentication
923         * db-odbc/odbc-api.lisp: Move ODBC v3 conversons
924         * db-odbc/odbc-sql.lisp: Load mysql or postgresql package when connecting
925         to a database of that type so that functions that indicate capabilities of
926         database are available.
927         
928 02 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
929         * db-odbc/odbc-api.lisp: More conversions to ODBC v3
930         
931 02 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
932         * Version 3.0.2 Release
933         * TODO: Add note about ODBC on Windows
934         * db-odbc/odbc-loader.lisp: Add /winnt/system32/ to
935         search directories
936         * db-odbc/odbc-ff-interface.lisp: Change the return type 
937         of SQLSetEnvAttr to :short
938         
939 02 Sep 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
940         * examples/clsql-tutorial.lisp: added missing initarg for the COMPANYID
941         slot of the employee View Class definition [reported by Franz Deuzer]. 
942
943 01 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
944         * Version 3.0.1 Release
945         * tests/test-init.lisp: Add second join class to employee-address
946         to test a class with two join slots.
947         * sql/oodml.lisp: Fix find-all function for a class with multiple
948         join slots
949         * TODO: Remove need to test/fix multiple join classes
950         
951 27 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
952         * db-mysql/Makefile, db-mysql/mysql-loader.lisp: accept patch
953         from Jon Buffington for file locations on Darwin.
954         
955 17 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
956         * sql/db-interface.lisp: Improve messages when functions
957         are passed a database object, but the method is not specialized
958         for that database type.
959         * sql/metaclasses.lisp: Fix inline declaration (reported by
960         Cyrus Harmon)
961         
962 14 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
963         * TODO: Add bug report about SQL generation with a table
964         containing two join slots.
965         * sql/oodml.lisp: Add optional size to VARCHAR type
966         
967 3 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
968         * Version 3.0.0 Release
969         * sql/expressions.lisp: Change declaration that
970         caused error on openmcl
971         * db-aodbc/aodbc-sql.lisp: Fix storage location
972         of odbc connection. Specialize database-query since
973         dbi's :types keyword is different than generic-odbc's
974         :result-types keyword
975         * sql/db-interface.lisp: Add warnings for methods
976         not specialized by a db backends
977         * tests/test-fddl.lisp: Fix case of symbols to support
978         case-sensitive Allegro 
979         * db-oracle/oracle-sql.lisp: Rework errbuf in handle-oci-error
980         * tests/test-init.lisp: Note that odbc driver for postgresql
981         doesn't properly handle table ownership
982         * LATEST-TEST-RESULTS: update with version 3.0.0
983         
984 1 Aug 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
985         * sql/expressions.lisp: conditionalise escaping of backslash in 
986         generated SQL strings on backend. 
987         * tests/test-fdml.lisp: test for escaping of backslash. 
988         * sql/oodml.lisp: minor tidying in FIND-ALL. 
989
990 26 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
991         * NEWS: Initial 3.0 announcement draft
992         * README: Expand acknowledgements of incorporated projects
993         * CONTRIBUTORS: Further document Marcus Pearce contributions
994         
995 23 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
996         * sql/oodml.lisp: add DATABASE-OUTPUT-SQL-AS-TYPE method specialisation
997         to print floats with the exponent markers removed. 
998         * tests/test-oodml.lisp: add tests for updating records with floats. 
999
1000 22 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1001         * db-oracle/oracle-sql.lisp: enable :OWNER :ALL in DATABASE-LIST-* for 
1002         CommonSQL compatibility. 
1003         * tests/test-init.lisp: skip test :FDDL/TABLE/6 on Oracle since 
1004         this column constraint syntax is not supported. 
1005         * tests/test-fddl.lisp: change column indexed in test :FDDL/INDEXES/2
1006         from EMPLID to LAST_NAME since Oracle complains that EMPLID is already 
1007         indexed. 
1008
1009 17 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1010         * doc/ref-fdml.xml: document CACHE-TABLE-QUERIES. 
1011         * tests/test-fdml.xml: add test for CACHE-TABLE-QUERIES. 
1012         * doc/ref-ooddl.xml: minor changes to syntax and examples entries 
1013         for uniformity. 
1014         * doc/ref-oodml.xml: add examples for OODML. 
1015         * sql/oodml.lisp: ensure SELECT passes on its REFRESH argument 
1016         to FIND-ALL. 
1017         * sql/metaclasses.lisp: update docstrings. 
1018         * tests/test-init.lisp: change :db-constraints for emplid to 
1019         (:not-null :unique) as a temporary test for multiple column constraints 
1020         in DEF-VIEW-CLASS. 
1021         * tests/test-oodml.lisp: add tests for *DB-AUTO-SYNC* and 
1022         return type of (SETF SLOT-VALUE-USING-CLASS). 
1023         * TODO, doc/TODO: remove items done. 
1024         * README: fix typo. 
1025         
1026 16 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1027         * sql/oodml.lisp: on Lispworks, use weak valued hash tables for 
1028         object caching. 
1029         * sql/expressions.lisp: Fix SQL generation for the symbol NIL. 
1030
1031 16 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1032         * sql/expressions.lisp: reactivate caching of generated SQL strings. 
1033         Move methods for DATABASE-OUTPUT-SQL, OUTPUT-SQL and SQL-HASH-KEY 
1034         here from sql/fdml.lisp. Rationalise behaviour of SQL-OUTPUT, 
1035         OUTPUT-SQL and DATABASE-OUTPUT-SQL. 
1036         * sql/fdml.lisp: remove disabled method ADD-STORAGE-CLASS. Move 
1037         methods for DATABASE-OUTPUT-SQL, OUTPUT-SQL and SQL-HASH-KEY to 
1038         sql/expressions.lisp. 
1039         * sql/ooddl.lisp: replace call to DATABASE-OUTPUT-SQL in 
1040         DATABASE-PKEY-CONSTRAINT with call to SQL-OUTPUT. 
1041         * sql/generics.lisp: add docstrings. 
1042
1043 15 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1044         * Version 2.11.16
1045         * db-oracle/oracle-sql.lisp: Remove OpenMCL specific
1046         code in favor of fixing UFFI with James Bielman's patch
1047         
1048 14 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1049         * Version 2.11.15
1050         * db-oracle/oracle-sql.lisp: Apply patch for OpenMCL/OSX
1051         from James Bielman
1052         
1053 14 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1054         * README, INSTALL: update URLs. Minor updates to descriptions. 
1055         * tests/README: remove stuff about editing contexts. 
1056
1057 12 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1058         * db-oracle/oracle-objects.lisp: Change *default-varchar-length* to 
1059         *default-string-length*
1060         
1061 12 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1062         * tests/test-syntax.lisp, tests/test-fdml.lisp: add tests for escaping 
1063         of single quotes. 
1064         * tests/test-fddl.lisp: add tests for column and table constraints 
1065         in CREATE-TABLE. Add test for OWNER keyword parameter to 
1066         LIST-TABLES (assuming same underlying machinery in other FDDL 
1067         functions). 
1068         * tests/test-init.lisp: restrict above test to postgresql and oracle. 
1069         
1070 12 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1071         * db-sqlite/sqlite-sql.lisp: Fix condition as reported by Aurelio 
1072         Bignoli.
1073
1074 11 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1075         * sql/oodml.lisp, sql/package.lisp, doc/ref-ooddl.lisp, db-mysql/mysql-objects.lisp: Add tinyint type
1076         
1077 10 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1078         * Version 2.11.14
1079         * doc/*.xml: documentation additionals and fixes so
1080         that docbook passes xmllint.
1081         
1082 9 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1083         * Version 2.11.13
1084         * sql/fdml.lisp: Apply patch from Kim Minh Kaplan 
1085         to change escaping of single quotes. Mild optimizations
1086         for escaped string output.
1087         * doc/ref-ooddl.lisp: documentation additions
1088         * doc/ref-oodml.lisp: Add purpose to functions
1089         * TODO: Add need to test single quote escaping
1090         
1091 7 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1092         * doc/ref-ooddl.xml, doc-ref-oodml.xml: documentation additions
1093         * sql/ooddl.lisp: Added SMALLINT type
1094         * sql/generic-postgresql.lisp: Added INT2 as SMALLINT type
1095         * db-mysql/mysql-objects.lisp: Added SMALLINT type
1096         * sql/package.lisp: Export SMALLINT
1097         * sql/expressions.lisp: Add MYSQL's UNSIGNED and ZEROFILL as
1098         db-constraints
1099         
1100 6 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1101         * sql/expressions.lisp: add AUTO-INCREMENT and UNIQUE to the 
1102         recognised column constraints for CREATE-TABLE and the :DB-CONSTRAINTS 
1103         View Class slot option. 
1104         * sql/ooddl.lisp: fix bug preventing the :DB-CONSTRAINTS View Class 
1105         slot option accepting a list of constraints [reported by Travis Cross]. 
1106         * doc/ref-fddl.xml: add some examples of specifying column and 
1107         table constraints to the documentation for CREATE-TABLE. 
1108         * TODO: add note about adding tests for table/column constraints. Add 
1109         optimisation note about using cached attribute types in insert/update
1110         operations. 
1111         
1112 3 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1113         * doc/appendix.xml: add notes about idiosyncrasies/unsupported 
1114         features and so on the documentation for each backend. 
1115         * doc/TODO: remove items done. 
1116         * doc/ref-transaction.xml: add note in introduction about 
1117         autocommit mode as a difference from CommonSQL. 
1118         * doc/ref-syntax.xml: add notes about SQL syntax state functions 
1119         being macros in CLSQL. Add note about SQL operators which are 
1120         CLSQL extensions. 
1121
1122 2 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1123         * Version 2.11.12 released
1124         * doc/ref-recording.xml: document SQL I/O recording. 
1125         * doc/ref-prepared.xml: new file for documenting prepared statements. 
1126         * doc/clsql.xml: comment out include for large object and CLSQL-SYS 
1127         documentation. 
1128         * doc/ref-conditions.xml: complete documentation of condition system. 
1129         * doc/global-index.xml: add symbols from condition system and remove
1130         those from LOB and prepared statement APIs. 
1131         * doc/ref-fdml.xml: complete documentation of FDML.
1132         * doc/glossary.xml: add View Class. 
1133         * doc/TODO: remove items done. 
1134         * sql/conditions.lisp: make SQL-CONDITION a parent of SQL-ERROR. 
1135         * sql/package.lisp: remove FOR-EACH-ROW from exports list. Export 
1136         additional slot accessors for condition classes. 
1137
1138 1 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1139         * doc/ref-ooddl.lisp: Add documentation
1140         * doc/ooddl.lisp: Move *DEFAULT-VARCHAR-LENGTH* from oodml.lisp
1141         and rename to *DEFAULT-STRING-LENGTH*. Add docstring.
1142         * doc/oodml.lisp: Rename references to new name of
1143         *DEFAULT-STRING-LENGTH*
1144
1145 1 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1146         * doc/ref-transaction.xml: document transaction handling. 
1147         * sql/transaction.lisp: ensure that COMMIT, ROLLBACK and 
1148         START-TRANSACTION return NIL as per the CommonSQL spec. Modify 
1149         ADD-TRANSACTION-{ROLLBACK|COMMIT}-HOOK such that a database is 
1150         passed as a keyword argument defaulting to *DEFAULT-DATABASE*.
1151         Added docstrings. 
1152
1153 30 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk>
1154         * doc/ref-fdml.xml: document the FDML. 
1155         * doc/ref-fddl.xml: move documentation for TRUNCATE-DATABASE here. 
1156         * sql/ooddl.lisp: moved *default-varchar-length* to here from 
1157         oodml.lisp and renamed to *default-string-length*
1158         
1159 23 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1160         * sql/oodml.lisp: Add keyword :transactions to def-view-from-class
1161         to allow specifying transactionless table creation
1162         * doc/ref-oodml.lisp: Add new keyword to signature of 
1163         DEF-VIEW-FROM-CLASS     
1164         
1165 18 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1166         * Version 2.11.11
1167         * sql/expressions.lisp: when removing duplicate table identifiers 
1168         in the FROM clause of a query, check both table name and alias 
1169         are equivalent. 
1170         * sql/fdml.lisp: remove DESCRIBE-TABLE. 
1171         * sql/db-interface.lisp: remove generics DESCRIBE-TABLE and 
1172         DATABASE-DESCRIBE-TABLE. 
1173         * sql/package.lisp: remove DESCRIBE-TABLE, DATABASE-DESCRIBE-TABLE 
1174         and LIST-TABLE-INDEXES. 
1175         * sql/generic-postgresql.lisp: add reader conditional #+nil for 
1176         DATABASE-DESCRIBE-TABLE and comment about its uses for 
1177         re-implementing LIST-ATTRIBUTE-TYPES with a single SQL query 
1178         returning type info for all attributes. 
1179         Fix DATABASE-SEQUENCE-LAST. 
1180         * sql/fddl.lisp: remove LIST-TABLE-INDEXES and redefine 
1181         LIST-INDEXES with additional keyword parameter :ON. 
1182         * tests/test-fddl.lisp: replace LIST-TABLE-INDEXES in :fddl/index/3 
1183         with LIST-INDEXES (with :ON parameter). 
1184         * doc/global-index.xml: remove DESCRIBE-TABLE and LIST-TABLE-INDEXES. 
1185         * doc/ref-connect.xml: minor tidying. 
1186         * doc/ref-fddl.xml: document the FDDL. 
1187         * doc/TODO: removed items done. Moved note about transaction handling 
1188         from TODO to here. 
1189         * TODO: move note about transaction handling to doc/TODO. Added 
1190         optimization note about LIST-ATTRIBUTE-TYPES and LIST-INDEXES. 
1191         
1192 13 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1193         * Version 2.11.10
1194         * sql/syntax.lisp: updated docstrings. 
1195         * sql/package.lisp: exported DATABASE-NAME-FROM-SPEC from CLSQL 
1196         package.
1197         * sql/database.lisp: add docstrings for CREATE-DATABASE, 
1198         DESTROY-DATABASE, TRUNCATE-DATABASE and LIST-DATABASES. Replace 
1199         CLSQL-GENERIC-ERROR signalled in RECONNECT with SQL-CONNECTION-ERROR. 
1200         * doc/ref-syntax.xml, doc/global-index.xml: minor tidying. 
1201         * doc/ref-connect.xml: document connection/initialisation. 
1202         * doc/ref-fdml.xml: move TRUNCATE-DATABASE reference entry here. 
1203         * doc/TODO: remove items done. 
1204         * Makefile: add db-oracle to to SUBDIRS. 
1205
1206 13 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1207         * sql/oodml.lisp: Add new serialization functions:
1208         WRITE-INSTANCE-TO-STREAM and READ-INSTANCE-FROM-STREAM
1209         * sql/expressions.lisp: Avoid duplicate FROM names when selecting
1210         from a table that has more than one primary index.
1211         * sql/conditions.lisp: Fix printing of closed-database error
1212         
1213 13 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1214         * Version 2.11.9
1215         * sql/conditions.lisp: Set initial slot value for message in SQL-WARNING
1216         * sql/transactions.lisp: Correctly set slots of SQL-WARNING
1217
1218 12 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk>
1219         * sql/package.lisp: export DATABASE-TYPE from CLSQL and subclasses 
1220         of SQL-EXPRESSION from CLSQL-SYS. 
1221         * sql/syntax.lisp: make error signalled in SQL-OPERATION an 
1222         SQL-USER-ERROR. Make SQL-OPERATOR return just one value. 
1223         * doc/Makefile: added Mandrake linux. 
1224         * doc/catalog-redhat.xml, doc/catalog-mandrake.xml: new files. 
1225         * doc/appendix.xml: fixed little typo (adsf). 
1226         * doc/glossary.xml: removed closed-database and note about 
1227         sql-expression, added some entries. 
1228         * doc/ref-syntax.xml: documented the symbolic SQL syntax. 
1229
1230 10 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1231         * Version 2.11.8
1232         * db-mysql/mysql-loader.lisp: Remove load of unnecessary zlib library
1233         * multiple: Add generalized-boolean type as requested by
1234         Edi Weitz
1235         * TODO: Added need for test of generalized-boolean
1236         
1237 9 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1238         * Version 2.11.7 released
1239         * uffi/clsql-uffi-loader.lisp: Apply patch from Edi Weitz
1240         for loading with clc-register-user-package. Remove personal
1241         directory from path lisp.
1242         * db-mysql/mysql-loader.lisp: Similar changes
1243         
1244 8 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1245         * Version 2.11.6 released
1246         * sql/oodml.lisp: Commit patch from Edi Weitz
1247         to fix symbol writing/reading
1248         * TODO: Add need for symbol slot test
1249         
1250 7 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1251         * sql/package.lisp: remove duplicate export of 
1252         *CACHE-TABLE-QUERIES-DEFAULT*. 
1253         * doc/ref-*.xml, doc/global-index.xml: new files documenting 
1254         the CommonSQL compatible api. 
1255         * tests/test-fdml.lisp: modified the test :fdml/transaction/3 to 
1256         reflect changes in return values of WITH-TRANSACTION. 
1257
1258 04 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1259         * tests/README: Fix filename [reported by Bill Clementson]
1260         * sql/transactions.lisp: Apply return value patch from
1261         Edi Weitz for WITH-TRANSACTION
1262         * tests/README: Remove ptester package requirement (as noted
1263         by Bill Clementson)
1264         
1265 03 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1266         * Version 2.11.5 released
1267         * examples/clsql-tutorial.lisp: Remove obsolete :nulls-ok attribute,
1268         Select connection-spec based on connection type. Bugs reported by
1269         Bill Clementson.
1270         * uffi/uffi.dll, uffi/uffi.lib: Recompile with Visual Studio 2003
1271         * db-mysql/mysql-loader.lisp: Update check for zlibwapi library
1272         name on Windows, add \bin\ directory to search path
1273         
1274 31 May 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1275         * db-odbc/odbc-sql.lisp: DB-TYPE replaced with DATABASE-TYPE in 
1276         DATABASE-CONNECT. 
1277         * sql/operations.lisp: substr now generates SUBSTR for use on 
1278         Oracle; added a new operator SUBSTRING for use elsewhere. minus 
1279         now generates MINUS for use on Oracle. Nvl signals an error if 
1280         not called with exactly 2 arguments. Add concat function for use 
1281         instead of the || operator on MySQL and Oracle. 
1282         * sql/syntax.lisp: changed internal symbol for the || operator to 
1283         CONCAT-OP. 
1284         * sql/expressions.lisp: removed redundant and unused functions 
1285         GENERATE-SQL (cf. SQL-OUTPUT) and DATABASE-CONSTRAINT-DESCRIPTION
1286         (cf. MAKE-CONSTRAINTS-DESCRIPTION). 
1287         * sql/generics.lisp: removed generic function for 
1288         DATABASE-CONSTRAINT-DESCRIPTION (see above). 
1289         * tests/test-syntax.lisp: modified/added tests according to changes
1290         in sql/operations.lisp. 
1291         * tests/test-fdml.lisp: changed SUBSTR to SUBSTRING in test 
1292         :fdml/select/21.  
1293         * sql/package.lisp: added the operators SQL-SUBSTRING, SQL-CONCAT-OP 
1294         and SQL-USERENV to the shared exports list. Removed 
1295         ROLLBACK-TRANSACTION, COMMIT-TRANSACTION, DATABASE-START-TRANSACTION, 
1296         DATABASE-ABORT-TRANSACTION, DATABASE-COMMIT-TRANSACTION, 
1297         TRANSACTION-LEVEL, TRANSACTION,  RECORD-SQL-COMMAND and 
1298         RECORD-SQL-RESULT from shared exports list. 
1299         
1300 30 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1301         * db-postgresql/postgresl-sql.lisp: Avoid computing
1302         result-types lisp when nil result-types. Return only
1303         one value when field-types nil.
1304         * db-mysql/mysql-sql.lisp: Simple queries now
1305         working with prepared statements.
1306         
1307 30 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1308         * Version 2.11.4: MySQL 4.1 now passes all tests
1309         * sql/package.lisp: Add API for prepared statments.
1310         * sql/fdml.lisp: Change implicit flatp processing
1311         for string map-query for greater CommonSQL conformance.
1312         Add high-high API for prepared statements.
1313         * tests/test-basic.lisp: Add test for map-query and
1314         single argument.
1315         * sql/transactions.lisp: Change name/semantics of
1316         autocommit to set-autocommit.
1317         * sql/generic-postgresql.lisp: Add support for
1318         prepared statements. 
1319         * tests/test-internal.lisp: New file
1320         * sql/odbc-api.lisp: Update to using ODBC V3 protocol
1321         * clsql-mysql.asd, clsql-uffi.asd: Remove check and Common Lisp
1322         Controller invocation.
1323         * db-mysql/mysql-api.lisp: Add support for MySQL 4.1 field structure
1324         * sql/expressions.lisp: Avoid emitting double parenthesis when a
1325         function contains a subselect. 
1326         
1327 27 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1328         * Version 2.11.3
1329         * sql/ooddl.lisp: Commit patch from Edi Weitz fixing return
1330         type (setf slot-value-using-class)
1331         * TODO: add not that need a test case for the above fix
1332         * db-sqlite: Remove clisp support since clisp can not run CLSQL
1333         with its MOP usage
1334         * db-oracle/oracle-sql.lisp: By default, use OCIEnvCreate as 
1335         introduced in Oracle8. Leave older code selectable by a reader macro
1336         for Oracle7 and prior. Avoid use of OCIServerAttach since CLSQL
1337         uses OCILogon and does not the more complex session management.
1338         
1339 26 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1340         * sql/oodml.lisp: Commit universal-time typo patch from Edi Weitz
1341         * test/test-init.lisp: Add universal-time slot to person.
1342         * test/test-fddl.lisp: Add tests of universal-time slot
1343         * test/test-ooddl.lisp: Test universal-time slot in an object
1344         * TODO: Remove need for universal-time test     
1345         * debian/rules, debian/control: Add cl-sql-oracle binary package
1346         * doc/appendix.xml: Add Oracle backend information
1347         * db-oracle/oracle-objects.lisp: Add database-get-type-specifier for
1348         universal-time. Convert BIGINT CLSQL type to CHAR SQL type
1349         * db-mysql/mysql-sql.lisp: Fix condition name to sql-connection-error
1350         * doc/ref-clsql.xml: Renamed from ref_clsql.xml. Change the documentation
1351         for map-query to reflect changed in arguments to be CommonSQL compatible.
1352         Updated old clsql conditions to new CommonSQL compatible conditions.
1353         
1354 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1355         * sql/oodml.lisp: (string n) now produces a CHAR field. Add new VARCHAR
1356         type. Added *default-varchar-length* rather than previous hard-coded
1357         varchar length. Remove 'simple-string and 'simple-base-string since they
1358         are subtypes of 'string.
1359         * db-oracle/oracle-sql.lisp: Use *default-varchar-length* rather than
1360         local hard-coded value.
1361         * sql/metaclasses.lisp: Convert specified type VARCHAR and (VARCHAR n) to Lisp
1362         type string. Convert specified-type (CHAR n) to string. Convert specified-type
1363         CHAR to lisp type character.
1364         * sql/generic-postgresql.lisp: (string n) => (CHAR n)
1365         * sql/operations.lisp: Add userenv
1366         * doc/TODO: Add AUTOCOMMIT. Remove need for large table and bigint
1367         slot tests
1368         * sql/oracle-sql.lisp: Add 64-bit bigint direct conversion
1369         * uffi/clsql-uffi.lisp: Handle signed 64-bit integers
1370         * test/test-init.lisp: Add large table with bigint slot
1371         
1372 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1373         * Version 2.11.1 released: Much simpler Oracle client library loading.
1374         Now uses ORACLE_HOME environmental variable as well as tests default
1375         path for Oracle Instant Client. 
1376         
1377 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1378         * Version 2.11.0 released: Full Oracle support. All tests pass
1379         * db-oracle/oracle-sql.lisp: Add declaration so that SBCL runs efficiently.
1380         * tests/test-init.lisp: capitalize odbc backend name in banner
1381         * CONTRIBUTORS: Add note about Marcus' excellent work
1382         * sql/oodml.lisp: Removed old stub function     
1383         * clsql.asd: Use module names in current package rather than keyword package
1384         * db-oracle/oracle-sql.lisp: Don't trim trailing spaces. Prevent interrupts
1385         in setting sequence position. Make autocommits more efficient.
1386         * tests/test-init.lisp: Skip 2 tests on Oracle which have unsupported syntax 
1387         * sql/oodml.lisp: Get rid of undocumented raw-string type. CommonSQL
1388         strings are raw (non-trimmed trailing whitespace). Add database-get-type-specifier
1389         and read-sql-value for NUMBER and CHAR.
1390         * sql/base-classes.lisp: Add autocommit slot
1391         * sql/transaction.lisp: Added autocommit processing, mild cleaning.
1392         * doc/intro.xml: Add Oracle
1393         
1394 24 May 2004: Marcus Pearce (m.t.pearce@city.ac.uk) 
1395         * db-postgresql-socket/postgresql-socket-sql.lisp: replace 
1396         CLSQL-SIMPLE-WARNING with SQL-WARNING. 
1397         * db-sqlite/sqlite-sql.lisp: replace CLSQL-SIMPLE-WARNING with 
1398         SQL-WARNING. 
1399         * db-aodbc/aodbc-sql.lisp: replace CLSQL-ERROR with SQL-ERROR. 
1400         * clsql.asd: reworked module structure in package definition and 
1401         file names to better reflect component functionality. 
1402         * sql/package.lisp: added SQL-FATAL-ERROR and SQL-TIMEOUT-ERROR to 
1403         exports list. Removed duplicate and obsolete exports. Exported 
1404         remaining SQL operations: SQL-SOME, SQL-<>, SQL-BETWEEN, SQL-DISTINCT, 
1405         SQL-NVL and SQL-FUNCTION. Organised exports by functionality/file and 
1406         according to whether they are specified by CommonSQL or CLSQL 
1407         extensions. 
1408         * sql/transaction.lisp: replace CLSQL-SIMPLE-WARNING with 
1409         SQL-WARNING. 
1410         * sql/generics.lisp: moved generics for QUERY and EXECUTE-COMMAND 
1411         here from basic-sql.lisp. 
1412         * sql/expressions.lisp: NEW FILE: renamed from classes.lisp (deleted). 
1413         * sql/fddl.lisp: NEW FILE: renamed from table.lisp (deleted). 
1414         * sql/fdml.lisp: NEW FILE: merger of basic-sql.lisp and sql.lisp
1415         (both deleted). 
1416         * sql/ooddl.lisp: NEW FILE: ooddl from objects.lisp (deleted). 
1417         * sql/oodml.lisp: NEW FILE: oodml from objects.lisp (deleted). 
1418         
1419 23 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1420         * Version 2.10.22 released
1421         * sql/kmr-mop.lisp, sql/objects.lisp: Since SBCL is the only implementation that
1422         has reversed class slots, change the default for ordered-class-slots so that slots
1423         are now in the same order an in the def-view-class.
1424         * sql/sql.lisp: Honor case of string table identifier to INSERT-RECORDS
1425         * test/test-fddl.lisp: Add two tests for mixed case names
1426         * db-oracle/oracle-sql.lisp: Add missing database qualifier. Return NUMBER (double)
1427         for computed fields, this will require some adjustment to the test suite which
1428         in many cases expects integers.
1429         * test/test-fdml.lisp: Accomodate that Oracle returns doubles for computed columns
1430         
1431 22 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1432         * Version 2.10.21 released
1433         * sql/sequences.lisp: Move generic sequence functions here from db-sqlite,
1434         db-odbc, and db-aodbc.
1435         * sql/*.lisp: Add db-type parameter to generic functions READ-SQL-VALUE,
1436         DATABASE-GET-TYPE-SPECIFIER, and OUTPUT-SQL-VALUE-AS-TYPE. Update methods to use these.
1437         * sql/generic-postgresql.lisp, sql/generic-odbc.lisp: New files
1438         * db-odbc/odbc-sql.lisp, db-aodbc/aodbc-sql.lisp: Move common code to 
1439         sql/generic-odbc.lisp
1440         * db-postgresql/postgresql-sql.lisp, db-postgresql-socket/postgresql-socket-sql.lisp: 
1441         Move common code to  sql/generic-postgresql.lisp
1442         * sql/classes.lisp: honor case of string tables when outputting queries 
1443         * sql/objects.lisp: Add database type to default database-get-type-specifier method
1444         * sql/sql.lisp:  Add database type to default database-abort-transaction method
1445         * db-mysql/mysql-objects.lisp: New file
1446         * sql/objects.lisp: Move MySQL specific code to mysql-objects.lisp
1447         * sql/utils.lisp: Add GETENV function which will be used to get ORACLE_HOME
1448         from environment
1449         * test/test-fdml.lisp: String table names are now case sensitive, so convert to
1450         default db case for FDML/SELECT/25
1451
1452 22 May 2004 Kevin Rosenberg
1453         * Version 2.10.20 released: Oracle backend now fails 6 out of 200 tests
1454         * TODO: Added 2 variances from CommonSQL. Add tests for owner phrases
1455         and string identifiers with non-default case
1456         * sql/table.lisp: Don't convert string table name to a symbol.
1457         * sql/classes.lisp: Honor case of string identifiers
1458         * sql/sql.lisp: Ensure recyclebin is purged for Oracle in 
1459         TRUNCATE-DATABASE
1460         * db-oracle/oracle-sql.lisp: Add sequence functions, fix use of
1461         of owner phrases. Obtain server and client versions.
1462         * db-oracle/oracle-objects.lisp: Fix type specifiers
1463         * tests/test-fddl.lisp: Allow :varchar2 and :number as data types
1464         * tests/test-init.lisp: Properly get username from Oracle connection-spec
1465         
1466 22 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1467         * sql/generics.lisp: reworked docstrings. Remove generics for 
1468         ADD-TO-RELATION and REMOVE-FROM-RELATION. 
1469         * sql/objects.lisp: reworked docstrings. Changed UPDATE-OBJECT-JOINS 
1470         to UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
1471         * sql/package.lisp: Changed UPDATE-OBJECT-JOINS to UPDATE-OBJECTS-JOINS 
1472         for CommonSQL compatibility. Remove ADD-TO-RELATION and 
1473         REMOVE-FROM-RELATION. 
1474         * tests/test-oodml.lisp: Changed UPDATE-OBJECT-JOINS to 
1475         UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
1476         * doc/TODO: added notes about extra slot options to DEF-VIEW-CLASS. 
1477         * sql/conditions.lisp: add documentation for conditions. Add 
1478         SQL-TIMEOUT-ERROR and SQL-FATAL-ERROR for CommonSQL compatibility. 
1479
1480 21 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1481         * sql/basic-sql.lisp: reworked docstrings. 
1482         * sql/transactions.lisp: reworked docstrings. 
1483         * sql/sql.lisp: reworked docstrings. 
1484         * sql/initialize.lisp: reworked docstrings. INITIALIZE-DATABASE-TYPE 
1485         sets *DEFAULT-DATABASE-TYPE* for CommonSQL compatibility. 
1486         * sql/database.lisp: reworked docstrings. 
1487         * doc/TODO: added notes about START-TRANSACTION and IN-TRANSACTION-P 
1488         and FDML extensions and database extensions. 
1489
1490 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1491         * db-oracle/oracle-sql: Use clsql-specific error conditions. Use owner keyword.
1492         * db-oracle/make9.sh: add makefile for building with Oracle 9 client
1493         libraries
1494         * sql/table.lisp: Add logic for dealing with Oracle 10g vs. previous
1495         Oracle versions with the PURGE option required for drop table. This needs
1496         to be converted to a generic function and moved to db-oracle/oracle-sql.lisp
1497
1498 20 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1499         * sql/classes.lisp: remove unused PARAMS slot in SQL-IDENT-ATTRIBUTE. 
1500         * sql/syntax.lisp: remove unused PARAMS keyword arg to SQL-EXPRESSION. 
1501         * sql/table.lisp: reworked docstrings. 
1502         * sql/objects.lisp: moved *default-update-objects-max-len* here from 
1503         table.lisp. 
1504         * doc/TODO: notes about :if-does-not-exist arg to DROP-TABLE, 
1505         DROP-VIEW and DROP-INDEX and the use of the :transactions and 
1506         :constraints keyword args to CREATE-TABLE. 
1507         * sql/classes.lisp: the DESCRIPTION argument to CREATE-TABLE is now 
1508         CommonSQL compatible with respect to column constraints. 
1509
1510 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1511         * sql/oracle-sql.lisp: Now compiles and runs on SBCL.
1512         Requires UFFI 1.5.0 or higher
1513         
1514 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1515         * Version 2.10.19
1516         * sql/conditions.lisp: Fix cerror
1517         
1518 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1519         * Version 2.10.18 released: New condition hierarchy to be compatible
1520         with CommonSQL -- not backward compatible with previous CLSQL.
1521         * sql/db-interface.lisp: Add more default methods
1522         * sql/objects.lisp: Add explicit table name to order-by parameters
1523         in find-all when only one table to avoid selecting a duplicate row.
1524         Fix error in FIND-ALL when using :order-by such as (([foo] :asc))
1525         as previous logic was adding two fields (foo asc) to SELECT query.
1526         Make :result-types :auto be the default for object selections.
1527         Properly handle caching key when using multiple order-by with asc/desc
1528         directions.
1529         * db-oracle/*.lisp: Much improvements, now passes 90% of test suite
1530         
1531 19 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1532         * sql/recording.lisp: reworked docstrings. 
1533         * sql/syntax.lisp: reworked docstrings. 
1534         * doc/TODO: added notes about extensions to SQL-RECORDING-P and the 
1535         SQL syntax state functions being macros. 
1536
1537 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1538         * sql/package.lisp: Export initialize-database-type and
1539         *initialize-database-types* from CLSQL package.
1540         * sql/conditions.lisp: Add new CommonSQL compatible conditions,
1541         remove old CLSQL conditions.
1542         * sql/loop-extensions.lisp: Make errors of type sql-user-error
1543         * */*.lisp: Convert to from old to new conditions
1544         
1545 18 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1546         * sql/table.lisp: Add PURGE to drop command for oracle 10g backend.
1547         To handle this difference, will need to add a new database-drop-table
1548         generic function.
1549         * db-oracle/oracle-sql.lisp: Move server-version and
1550         major-version-number to database object to allow multiple connections
1551         to Oracle servers of different versions.
1552         
1553 18 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1554         * TODO: moved notes about backends to doc/TODO. 
1555         * doc/TODO: added notes about backends and select extensions. 
1556         * sql/base-classes.lisp: remove obsolete schema slot in database 
1557         class. 
1558         
1559 16 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1560         * db-oracle/oracle-api: Add OCIServerVersion
1561         * db-oracle/oracle-sql: Query and store server version on connect
1562         * sql/db-interface.lisp: Add new db-type-has-bigint? generic
1563         function to handle OCI's lack of bigint support
1564         * test/test-basic.lisp: Separate bigint testing
1565         * test/test-utils.lisp: Add oracle to specs and list of backends
1566         * doc/TODO: New file
1567         * test/test-fdml.lisp: Added FDML/SELECT/34 to test
1568         run-time instantiation of variables in reader macros.
1569         * TODO: Remove item already complete. Add note about
1570         condition variances
1571         
1572 16 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1573         * sql/syntax.lisp: added condition to the reader macro to treat [*] 
1574         as a column identifier (rather than an operation) for CommonSQL 
1575         compatibility. 
1576         * tests/test-fdml.lisp: add tests for ORDER-BY and SET-OPERATION 
1577         keword args to SELECT, [*] as column identifier, new MAP-QUERY 
1578         behaviour and the ANY and ALL operators in subqueries. 
1579         * tests/test-init.lisp: add set-operation and subquery tests to 
1580         appropriate skip lists. 
1581         * sql/objects.lisp: remove redundant and non CommonSQL compatible 
1582         ORDER-BY-DESCENDING keyword argument for SELECT. 
1583         * sql/classes.lisp: remove redundant and non CommonSQL compatible 
1584         ORDER-BY-DESCENDING keyword argument for SELECT. 
1585         * tests/test-oodml.lisp: add test for ORDER-BY keyword to SELECT 
1586         with object queries. 
1587
1588 15 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1589         * sql/db-interface.lisp: Add new db-type-has-union? 
1590         since Mysql 3.23 does not support unions.
1591         * sql/test-init.lisp: Don't try union tests on database
1592         backends which do not support it.
1593         * db-oracle/*.lisp: initial port to UFFI
1594         * sql/objects.lisp: implement UPDATE-OBJECT-JOINS,
1595         implement REFRESH for SELECT.
1596         * tests/test-oodml.lisp: Add tests for deferred retrieval,
1597         caching, refresh, and update-object-joins
1598         * tests/test-init.lisp: Add deferred-employee-address class
1599         
1600 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1601         * sql/operations.lisp: make MINUS operator a synonym for EXCEPT. Add 
1602         COALESCE operator and make NVL a synonym for this. Make ANY, SOME, 
1603         ALL and EXISTS generate function expressions so they output the 
1604         correct SQL. 
1605         * sql/classes.lisp: SELECT now generates appropriate SQL when 
1606         passed the SET-OPERATION and ALL keyword arguments. 
1607         * sql/classes.lisp: the ORDER-BY keyword argument to SELECT now 
1608         accepts ordering constraints as pairs of the form (column direction) 
1609         where direction may be :ASC or :DESC. 
1610         * tests/test-syntax.lisp: added tests for MINUS and COALESCE/NVL. 
1611         Correct tests for ANY, SOME, ALL and EXISTS. 
1612         * tests/test-fdml.lisp: added test for COALESCE. 
1613         * sql/sql.lisp: MAP-QUERY now applies FUNCTION to QUERY-EXPRESSION 
1614         using funcall unless QUERY-EXPRESSION returns one column and its 
1615         FLATP slot is not nil in which case apply is used. 
1616         * tests/test-basic.lisp: modified calls to MAP-QUERY to reflect the 
1617         changes. 
1618         * TODO: remove items done. 
1619         * db-postgresql/postgresql-sql.lisp: no need to reverse results in 
1620         DATABASE-LIST-ATTRIBUTES. 
1621         * db-postgresql-socket/postgresql-socket-sql.lisp: no need to reverse
1622         results in DATABASE-LIST-ATTRIBUTES.    
1623         
1624 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1625         * sql/classes.lisp: SELECT now accepts table identifiers as strings 
1626         for CommonSQL compliance. Add support for qualified sql identifiers 
1627         with aliased table names. 
1628         * tests/test-fdml.lisp: added tests for table identifiers as strings 
1629         in SELECT and for aliased definitions. 
1630         * tests/test-syntax.lisp: added tests for alias definitions. 
1631         
1632 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1633         * sql/sql.lisp: PRINT-QUERY now calls QUERY with result-types and 
1634         field-names set to nil. 
1635         * sql/sql.lisp: PRINT-QUERY now computes column sizes correctly 
1636         with null attribute values. 
1637         * sql/operations.lisp: modify SQL concatenation operator to accept 
1638         unescaped || symbol.  
1639         * sql/syntax.lisp: modify sql reader macro function to accept 
1640         unescaped sql concatenation operator. 
1641         * tests/test-fdml.lisp: unescape sql concatenation operator. 
1642         * tests/test-syntax.lisp: unescape sql concatenation operator. 
1643         * TODO: remove items done. Add notes about SQLITE/MYSQL backends. 
1644         Note to add test for universal-time. Note about difference from 
1645         CommonSQL in transaction handling. 
1646
1647 13 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1648         * tests/test-init.lisp: Add deferred-employee-address
1649         class
1650         * tests/test-oodml.lisp: Add deferred retrieval testgs
1651         
1652 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1653         * Version 2.10.17
1654         * LATEST-TEST-RESULTS: Run on all platforms, add AMD64
1655         * sql/sql.lisp: Add FOR-EACH-ROW macro from clsql-classic/sql.lisp
1656         * db-sqlite/sqlite-uffi-api.lisp: Fix row-pointer type
1657         * *: Fix minor style warnings
1658         * clsql-classic: Remove system and subdirectory
1659         * clsql-base: Remove system and subdirectory and
1660         fold into clsql system
1661         * doc/intro.xml: Remove reference to old clsql-base. Add x86_64
1662         as supported platform.
1663         
1664 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1665         * Version 2.10.16: CLSQL now fully supports AllegroCL AMD64
1666         * db-odbc/odbc-api.lisp: work around return-type bug [spr28889] in
1667         Allegro 7.0beta AMD64
1668         * db-odbc/*.lisp: Add a layer of indirection to foreign-type
1669         of ODBC longs since this type can vary on 64-bit platforms depending
1670         upon the compilation options of unixODBC.
1671         * db-mysql/mysql-api.lisp: Fix int vs. long slots in foreign
1672         structures found by testing with AllegroCL 7.0b AMD64.
1673         * db-*/*-loader.lisp: Load 64-bit libraries on 64-bit platorms
1674         * sql/objects.lisp: Simple implementation of UPDATE-OBJECT-JOINS.
1675         Initial caching support for SELECT
1676         * tests/test-oodml.lisp: Avoid using cache when testing select.
1677         * sql/kmr-mop.lisp: Explicitly check slot order and
1678         store as a cl:*feature*
1679         * sql/recording.lisp: Remove additional types to
1680         increase CommonSQL conformance.
1681         * tests/test-init.lisp: Change a :column attribute
1682         to test symbols as value
1683         * sql/relations.lisp: Remove functions since they don't support
1684         many to many relationships.
1685         * examples/clsql-tutorial.lisp, doc/csql.lisp: Remove use
1686         of add-to-relations function and replace with explicit field settings.
1687         * base/classes.lisp: Remove obsolute query-stream. Add record-caches slot.
1688         
1689 9 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1690         * Version 2.10.15
1691         * LATEST-TEST-RESULTS: results with current version
1692         * sql/kmr-mop.lisp: Make CMUCL reader macros specific for cmu18
1693         since cmu19 has opposite order of class slots.
1694         * sql/objects.lisp: Fix (setf slot-value-using-class) for Lispworks
1695         * tests/test-fdml.lisp: Renumber SELECT tests to avoid overwriting
1696         a previous test
1697         * tests/test-init.lisp: Check test-database-underlying-type for
1698         ODBC/MySQL tests
1699         
1700 8 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1701         * sql/operations.lisp: complete remaining operations for the sql 
1702         syntax: SUBSTR, SOME, ORDER-BY, GROUP-BY, NULL, DISTINCT, EXCEPT, 
1703         UNION, INTERSECT, BETWEEN. 
1704         * sql/classes.lisp: add new classes: SQL-BETWEEN-EXPRESSION, 
1705         SQL-QUERY-MODIFIER-EXPRESSION and SQL-SET-EXPRESSION. 
1706         * tests/test-syntax.lisp: add tests for new operations. 
1707         * tests/test-fdml.lisp: add tests for queries based on new operations. 
1708         * tests/test-init.lisp: add select/20 to tests skipped for sqlite and 
1709         select/20, query/5, query/7 and query/8 to tests skipped by mysql. 
1710         * TODO: removed entries done. 
1711
1712 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1713         * tests/benchmarks.lisp: Add immediate vs. deferred
1714         join test.
1715         
1716 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1717         * Version 2.10.13: Now works on openmcl 0.14.2 
1718         * sql/objects.lisp: Add :retrieval :immediate for
1719         object selections
1720         * tests/test-init.lisp: Add non-index fields for testing 
1721         join class employee-addresss
1722         * test/test-oodml.lisp: Add tests for retrieval immediate
1723         * sql/metaclasses.lisp: Handle differences in direct-slot-definition 
1724         values which are now listifed by openmcl 14.2.
1725         * sql/objects.lisp: more framework for supporing immediate retrieval 
1726
1727 7 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1728         * docs/intro.xml: Upload location of a README file
1729         * sql/metaclass.lisp: Work-around openmcl's CHANGE-CLASS
1730         changing the type-specifier. Use a lisp type of (OR NULL FOO)
1731         for a specified-type of FOO unless :db-constraints :not-null.
1732         No need to specialize finalize-inheritance for openmcl.
1733         * tests/test-*.lisp: Rename fields so that joins occur on
1734         fields with different names. This ensures that join code is
1735         selecting the proper name.
1736         * test/test-init.lisp: Add :base-table for employee-address
1737         view class for testing.
1738         * sql/objects.lisp: Use view-table rather than name of table
1739         in a number of places to fix errors noted with using :base-table.
1740
1741 6 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1742         * sql/objects.lisp: replace *update-records-on-make-instance* with 
1743         *db-auto-sync* which also controls both automatic creation of 
1744         new records on creation of new instance and updating of record 
1745         fields on setting of instance slots (as suggested by Edi Weitz). 
1746         * tests/test-init.lisp: replace *update-records-on-make-instance* 
1747         with *db-auto-sync*. 
1748         * sql/package.lisp: replace *update-records-on-make-instance* 
1749         with *db-auto-sync*. 
1750         * TODO: replace *update-records-on-make-instance* with *db-auto-sync*. 
1751         * sql/objects.lisp: remove redundant rebindings of *db-initializing* 
1752         and *default-database* in FIND-ALL. 
1753         * sql/package.lisp: import time functions from CLSQL-BASE. 
1754         * tests/test-time.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
1755         * tests/test-fdml.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
1756         * tests/test-init.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
1757         * tests/test-ooddl.lisp: replace CLSQl-BASE package qualifier with 
1758         CLSQL. 
1759
1760 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1761         * sql/classes.lisp: Add SQL-OBJECT-QUERY type. Have [select 'class]
1762         now return a sql-object-query type rather than directly performing a query.
1763         This improves CommonSQL conformance.
1764         * sql/sql.lisp: Add new QUERY method for SQL-OBJECT-QUERY. Move
1765         from basic/basic-sql.lisp the DO-QUERY and MAP-QUERY since they now
1766         depend on sql-object-query-type.
1767         * sql/loop-extensions.lisp: Move from base package
1768         * classic/package.lisp: remove references to map-query and do-query
1769
1770 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1771         * TODO: New section on optimizations, especially optimizing JOINs.
1772         * sql/objects.lisp: Have :target-slot return of list of lists rather
1773         than a list of cons pairs to be conformant with CommonSQL.
1774         Make :target-slot much more efficient by using a SQL inner join
1775         statement and just requiring one SQL query. Add :retrieval :deferrred
1776         to target-slot joins. Add placeholder for update-objects-join.
1777         * sql/classes.lisp: Add :inner-join and :on slots to sql-query class
1778         and process them for query output-sql. 
1779
1780 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1781         * Version 2.10.11
1782         * base/basic-sql.lisp: Avoid multiple evaluation
1783         of query-expression in DO-QUERY
1784         * sql/objects.lisp: Make SELECT a normal function.
1785         SELECT now accepts type-modified database identifiers, such as
1786         [foo :string] which means that the values in column foo are returned 
1787         as Lisp strings. Add new *update-records-on-make-instance* special
1788         variable controlling automatic creation of new instances. Add missing
1789         RESULT-TYPES keyword to FIND-ALL. Add :target-slot support.
1790         * sql/packages.lisp: Export *update-records-on-make-instance* 
1791         * test/test-oodml.lisp: Add tests for :target-slot and many-to-many
1792         selections.
1793         * test/test-fdml.lisp: Add tests for type-modified
1794         database identifiers.
1795         * test/test-init.lisp: Stop using add-relation since implementing
1796         many-to-many joins. Use *update-records-on-make-instance* 
1797         to automatically store records on instance creation. Add many-to-many
1798         employee-address view-class.
1799         
1800 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1801         * Version 2.10.10
1802         * base/loop.lisp: Add object iteration. Use :result-type
1803         :auto for result-set. Remove 
1804         duplicate (and non-correct) code for non-list variables by
1805         simply making an atom variable into a list. 
1806         * sql/package.lisp: Remove unnecessary clsql-sys package
1807         and replace it with clsql.
1808         * sql/metaclasses.lisp: Properly store specified-type from
1809         direct-slot-definition and then store translated type in
1810         effective-slot-definition
1811         * sql/classes.lisp: Don't output type in sql-output
1812         for SQL-IDENT-ATTRIBUTE. This is in preparation for supporting
1813         [foo :integer] as fields in SELECT.
1814         * sql/query.lisp: Set default for :result-types to :auto in
1815         FDML QUERY.
1816         * sql/objects.lisp: Use specified-type when invocating 
1817         database-get-type-specifier. def-view-class macro now returns
1818         the class instance.
1819         * base/basic-sql.lisp: Make :AUTO the default value for
1820         :RESULT-TYPES for MAP-QUERY and DO-QUERY.
1821         * sql/objects.lisp: Add bigint type
1822         * test/tests-basic.lisp: Add tests for :result-types for
1823         MAP-QUERY and DO-QUERY
1824         * test/test-fdml.lisp: Add test for result-types in LOOP
1825         and also using single symbol rather than a list for variables.
1826         Add test that default :result-types is auto for FDML QUERY.
1827         * test/test-syntax.lisp: Don't expect TYPE in the SQL-OUTPUT
1828         of SQL-IDENT-ATTRIBUTE.
1829         * test/test-oodml.lisp: Enable OO loop iteration test,
1830         modify it so it doesn't depend on boolean where.
1831         
1832 4 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1833         * Version 2.10.9
1834         * sql/objects.lisp: added derived type specifier for universal time. 
1835         * sql/package.lisp: added #:universal-time to clsql-sys exports. 
1836         * tests/test-oodml.lisp: added test for translation of boolean slots 
1837         in SELECT with object queries. 
1838         
1839 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1840         * db-odbc/odbc-api.lisp: Fix changing nil to "NIL" 
1841         for odbc/postgresql backend.
1842         * db-odbc/odbc-sql.lisp: Fix ATTRIBUTE-TYPE so that
1843         it can handle NIL values from the ODBC driver
1844         * tests/benchmarks.lisp: New file with initial
1845         benchmark suite
1846         * sql/relations.lisp: fix to add subclassing support,
1847         minor optimizations [Edi Weitz]
1848         
1849 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1850         * Version 2.10.8        
1851         * base/conditions.lisp: Add *backend-warning-behavior*
1852         special variable.
1853         * db-postgresql-socket/postgresql-socket-sql.lisp:
1854         Honor value of *backend-warning-behavior*
1855         * tests/test-fdml.lisp: Remove test of raw boolean value
1856         since different backends handle this differently. Add
1857         test for :column attribute.
1858         * tests/test-oodml.lisp: Add tests for boolean slot value
1859         and for :void-value attribute
1860         * tests/test-init.lisp: Use *backend-warning-behavior*
1861         to suppress warnings from postgresql about implicitly
1862         creating primary key in tables. Add new address table.
1863         
1864 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1865         * Version 2.10.7
1866         * db-odbc/odbc-dbi.lisp: Convert TINYINT to integers when
1867         result-types is :auto
1868         * sql/objects.lisp: Properly handled writing/reading Boolean
1869         values from SQL database when retrieving objects.
1870         * test/test-fdml.lisp: Add another test for boolean results
1871         * test/utils.lisp: Fix incorrect declaration
1872         
1873 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1874         * Version 2.10.6
1875         * sql/generics.lisp: add generic function for SELECT. 
1876         * sql/objects.lisp: make SELECT a method specialisation. 
1877         * sql/classes.lisp: MAKE-QUERY now calls SELECT if the selections 
1878         referred to are View Classes. 
1879         * base/basic-sql.lisp: in DO-QUERY and MAP-QUERY, if the 
1880         query-expression arg evaluates to a list, then we have an object 
1881         query. 
1882         * tests/test-oodml.lisp: add tests for DO-QUERY and MAP-QUERY with 
1883         object queries. 
1884         * TODO: remove items done and add a todo for SELECT. 
1885         * sql/objects.lisp: SELECT takes a :field-names arg to pass on to 
1886         QUERY. 
1887         * sql/sql.lisp: add :field-names arg to QUERY. 
1888         * tests/test-fdml.lisp: minor rework to use :field-names arg to 
1889         SELECT. 
1890
1891 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk)
1892         * sql/objects.lisp: fix bug in FIND-ALL when SELECT called with 2 
1893         or more View Classes. 
1894         * sql/objects.lisp: make the :flatp argument to SELECT work with 
1895         object queries. 
1896         * sql/objects.lisp: make SELECT accept a :result-types argument 
1897         (defaults to :auto) which is passed on to QUERY.  
1898         * sql/objects.lisp: SELECT returns field-names as a second value. 
1899         * tests/test-ooddl.lisp: add flatp arg to SELECT calls as appropriate. 
1900         * tests/test-fdml.lisp: add flatp/result-types arguments to calls 
1901         to SELECT and take only first value as appropriate.
1902         * tests/test-fdml.lisp: add two new tests for query result coercion 
1903         and the field-names returned as a second value from SELECT. 
1904         * tests/test-oodml.lisp: add flatp arg to SELECT calls as appropriate. 
1905         
1906 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1907         * Version 2.10.6-pre1
1908         * sql/metaclasses.lisp: Add void-value slot
1909         * doc/csql.xml: Update def-view-class documentation
1910         * test/test-init.lisp: Change old :db-type to :db-kind.
1911         Remove old :nulls-ok attributes.
1912         * sql/objects.lisp: Add new universal-time and bigint
1913         types. Optimize reading of integers using parse-integer
1914         rather than read-from-string.
1915         * */*.lisp: Merge clsql-base-sys and clsql-base packages
1916         into clsql-base package
1917         * classic/sql.lisp: Move large object support into base, leaving
1918         classic without any functionality that is provided in the clsql
1919         system.
1920         * classic/package.lisp: Rename clsql-classic-sys package to
1921         its former nickname of clsql-classic
1922         
1923 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1924         * Version 2.10.5: SQLite backend now passes all result-types tests
1925         * clsql-sqlite.asd: Depend on clsql-uffi system
1926         * db-sqlite/sqlite-sql.lisp: Use clsql-uffi:convert-raw-field
1927         for efficiency and code reuse. 
1928         * db-sqlite/sqlite-api-uffi.lisp: Change (* :char) to (* :unsigned-char)
1929         for better cross-implementation compatibility.
1930
1931 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1932         * Version 2.10.4
1933         * sql/tables.lisp: Fix typo in CACHE-TABLE-QUERIES
1934         [Marcus Pearce]
1935         * db-postgresql/postgresql-sql.lisp: Fix foreign-string vs. cstring
1936         bug on SBCL in result-field-names function as reported by Marcus Pearce
1937         * db-sqlite/sqlite-sql.lisp: Fix  in database-store-next-row
1938         manifest in SBCL testing
1939         
1940 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1941         * Version 2.10.3
1942         * sql/database.lisp: Conform more to CommonSQL output
1943         for STATUS command [Marcus Pearce]
1944         * sql/sqlite-sql.lisp: Rework to use result-types
1945         * sql/sqlite-api-clisp.lisp: Add compatibility layer
1946         with sqlite-api-uffi.lisp so that sqlite-sql.lisp can
1947         be cleaned up of most clisp reader conditionals
1948         * sql/test-init.lisp: Now run field type tests on sqlite
1949         backend
1950         
1951 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1952         * Version 2.10.2
1953         * base/basic-sql.lisp: Set default value of :result-types 
1954         to :auto for more CommonSQL conformance. 
1955         * test/test-fdml.lisp: Add tests for numeric value of fields
1956         
1957
1958 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1959         * Version 2.10.1: New API function: CACHE-TABLE-QUERIES.
1960         * base/basic-sql.lisp, db-*/*-sql.lisp: More CommonSQL conformance.
1961         Return field names as second value for QUERY. This can be overridden
1962         for efficiency with the new keyword :FIELD-NAMES set to NIL
1963         in the QUERY invocation.
1964         * test/test-fdml.lisp: Add tests for new field-name feature
1965         * sql/metaclass.lisp: Remove old Lispworks cruft
1966         and replace it with invocation of new code in kmr-mop.lisp
1967         which actually works with Lispworks 4.2
1968         * doc/ref_clsql.xml: Document new :FIELD-NAMES keyword to
1969         QUERY function
1970         * base/db-interface.lisp: Document the multiple values
1971         returned by DATABASE-ATTRIBUTE-TYPE so matches the
1972         undocumented CommonSQL behavior. 
1973         * sql/table.lisp: Add *CACHE-TABLE-QUERIES-DEFAULT* and
1974         *DEFAULT-UPDATE-OBJECTS-MAX-LEN* variables and export them.
1975         LIST-ATTRIBUTE-TYPES now conforms to CommonSQL spec.
1976         Implement CACHE-TABLE-QUERIES.
1977         * db-odbc/odbc-sql.lisp: Fix attribute-type function
1978         * test/test-fddl.lisp: Add tests for attribute type     
1979         * db-mysql/mysql-sql.lisp: Mild optimization in accessing
1980         field structures.
1981         * base/classes.lisp: Add attribute-cache slot to database clas
1982         * base/initialize.lisp: initialize-database-type now automatically
1983         loads database-type backend as needed.
1984         * base/test-init.lisp: Utilize new initialize-database-type functionality.
1985         * TODO: remove items done
1986         
1987 30 Apr 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1988         * Version 2.9.6
1989         * sql/objects.lisp: remove create/drop-sequence-from-class. 
1990         * sql/objects.lisp: add INSTANCE-REFRESHED generic function. 
1991         * sql/objects.lisp: improved CommonSQL compatibility for
1992         UPDATE-RECORD-FROM-SLOT, UPDATE-RECORD-FROM-SLOTS,
1993         UPDATE-RECORDS-FROM-INSTANCE and DELETE-INSTANCE-RECORDS. 
1994         * sql/generics.lisp: move generics from objects.lisp to here. 
1995         
1996 29 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1997         * Version 2.9.6-pre1
1998         * db-mysql/mysql-client-info.lisp: Add client version 4.1
1999         detection
2000         * sql/sql.lisp: Make *default-database* the default for
2001         TRUNCATE-DATABASE
2002         
2003 28 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2004         * Version 2.9.5
2005         * db-mysql/mysql-sql.lisp: Fix bug in transaction capability
2006         detection
2007         * sql/objects.lisp: Commit patch from Slawek Zak to allow specifying 
2008         :metaclass in DEF-VIEW-CLASS invocation. This allows defining classes 
2009         on a metaclass specialized from standard-db-class.
2010
2011         
2012 24 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2013         * Version 2.9.4: Multiple changes to support Allegro's "modern"
2014         lisp which uses a lowercase reader and has case-sensitive symbols
2015         * sql/classes.lisp: Fix make-load-form bug for sql-ident-table
2016         exposed by case-sensitive mlisp. 
2017
2018 22 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2019         * Version 2.9.3: All tests now pass on all platforms!
2020         * LATEST-TEST-RESULTS: New file with summary of test results
2021         * sql/generics.lisp: New file for generic function definitions.
2022         * test/test-init.lisp: Display names of skipped tests.
2023         Use unwind-protect to ensure disconnect
2024         * sql/objects.lisp: Change database-type to database-underlying-type
2025         so that actual database engine is properly identified
2026         * db-odbc/odbc-api.lisp: Have default *time-conversion-function*
2027         return an ISO timestring for compatibility with other drivers.
2028         Workaround bug in MyODBC for LIST-TABLE-INDEXES
2029         * test/test-fdml.lisp: Accomodate that odbc-postgresql driver
2030         returns floating-point values for floor and truncate operations 
2031         * db-aodbc/aodbc-sql.lisp: Implement DATABASE-LIST-VIEWS
2032         * tests/test-basic.lisp: Port to regression tester
2033         * test/test-init.lisp: Output to *report-stream*
2034         * docs/appendix.xml: Document ODBC and SQLite backends.
2035         * sql/classes.lisp: Make output-sql require a database parameter.
2036         This allows SQL generation to have the proper case to support
2037         the differences in case handling between CommonSQL API,
2038         Postgresql, MySQL, Oracle.
2039         
2040 21 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2041         * Version 2.9.2: Improvments in database capability introspection
2042         and querying. Support transactions in MySQL where available.
2043         All tests now pass on MySQL and SQLite in addition to postgresql
2044         and postgresql-socket. ODBC fails only with OODDL/TIME/1 and OODDL/TIME/2.
2045         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST-VIEWS. Better support
2046         DATABASE-LIST-SEQUENCES.
2047         * clsql-uffi.asd, clsql-mysql.asd: Improve shared library loading
2048         * Database_capabilies: add HAS-VIEWS, HAS-CREATE/DESTROY-DB,
2049         HAS-BOOLEAN-WHERE, TRANSACTION-CAPABLE
2050         * tests/*.lisp: Check database capabilities and remove tests which
2051         the database backend does not support
2052         * sql/table.lisp: Add :TRANSACTIONS keyword to create table which
2053         controls whether InnoDB tables will be created when supported on
2054         the underlying MySQL server.
2055         
2056 20 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2057         * Version 2.9.0: New API function: LIST-TABLE-INDEXES,
2058         supported by all database backends (except AODBC since
2059         AODBC doesn't support index querying)
2060         * db-obdc/odbc-sql.lisp: Support DATABASE-LIST-INDEXES
2061         * db-odbc/odbc-api.lisp: Add %TABLE-STATISTICS function
2062         to support index queries
2063         * db-aodbc/aodbc-sql.lisp: Filter driver manager
2064         "information_schema" tables from LIST-TABLES
2065         * tests/test-basic.lisp: Remove table after testing
2066         * tests/test-fddl.lisp: Test LIST-TABLE-INDEXES
2067         * base/db-interface.lisp: Add DATABASE-UNDERLYING-TYPE
2068         which gets the underlying type of database -- required
2069         when dealing with ODBC databases and want to query
2070         database capabilities. Added DB-USE-COLUMN-ON-DROP-TABLES?
2071         as first database-backend specific feature. Is T on
2072         :mysql, NIL on other backends. Change DROP-TABLE to
2073         query this.
2074         
2075 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2076         * Version 2.8.2: Build changes for FreeBSD [Slawek Zak]
2077
2078 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2079         * Version 2.8.1
2080         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST function 
2081         * db-odbc/odbc-dbi.lisp: Add LIST-ALL-DATA-SOURCES function 
2082
2083 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2084         * Version 2.8.0: New API function: LIST-DATABASES
2085         * base/utils.lisp: Fix command-output on CMUCL/SBCL
2086         * db-*/*-sql.lisp: Add new database-list function
2087         * base/database.lisp: Add new LIST-DATABASES command
2088         
2089 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2090         * Version 2.7.9
2091         * db-sqlite/sqlite-sql.lisp: Fix sequence functions.
2092         * db-sqlite/sqlite-api-uffi.lisp: Print error string
2093         correctly.
2094         
2095 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2096         * Version 2.7.7
2097         * doc/csql.xml, examples/clsql-tutorial.lisp: Patch for db-kind
2098         from Eduardo Munoz.
2099         
2100 17 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2101         * Version 2.7.6
2102         * base/objects.lisp, base/classes.lisp: Patch
2103         for db-kind from Eduardo Munoz
2104         
2105 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2106         * Version 2.7.5
2107         * base/basic-sql.lisp: Fix FLATP in QUERY
2108
2109 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2110         * Version 2.7.3: Implement RECONNECT
2111
2112 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2113         * Version 2.7.2: Fix ODBC on Lispworks Windows
2114
2115 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2116         * Version 2.7.1: Fix for new ODBC backend.
2117         clsql-odbc now works on SBCL, CMUCL, OpenMCL
2118         in addition to AllegroCL and Lispworks.
2119
2120 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2121         * Version 2.7.0: New backend: ODBC. Tests as
2122         well as AODBC backend on Allegro,Lispworks.
2123         SBCL and CMUCL don't work quite yet.  Requires UFFI v1.4.11+
2124         * db-odbc/*.lisp: Add ODBC3 function SQLSetEnvAttr
2125         to explicitly set ODBC2 support. Add BIGINT support.
2126         Add result-types support. Added SQLTables.
2127         Fix array type in fetch-all-rows. Make width
2128         changable by database or query.
2129         * base/utils.lisp: Add process functions
2130         * base/package.lisp: Export utils to CLSQL-BASE-SYS
2131         * db-aodbc: Implement sequence functions,
2132         database-list-tables, database-list-attributes
2133         * tests/utils.lisp: Add support for ODBC backend,
2134         rework READ-SPECS to use +all-db-types+
2135         * db-mysql/mysql-sql.lisp: Use WITHOUT-INTERRUPTS
2136         for SEQUENCE-NEXT
2137         
2138 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2139         * Version 2.6.13. Requires UFFI version 1.4.9
2140         * db-odbc/*.lisp: Further porting.
2141         Pre-alpha code! But, basic query is now working.
2142
2143 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2144         * Version 2.6.12
2145         * base/transactions.lisp: Add quote for macro
2146         expansion of WITH-TRANSACTIONS [Time Howe]
2147         * db-sqlite/sqlite-sql.lisp: Support memory database
2148         in database-probe [Ng Pheng Siong]
2149         * db-odbc/*.lisp: Initial port to UFFI of SQL-ODBC.
2150         The DBI layer is not finished.
2151         
2152 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2153         * Version 2.6.11
2154         * sql/objects.lisp: add :root-class functionality for
2155         list-classes and add duration type support [Marcus Pearce]
2156         * db-odbc: Add mid-level [DBI] layer
2157
2158 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2159         * Version 2.6.10
2160         * db-aodbc: Add methods for generic functions, some are
2161         not yet implemented.
2162         * clsql-odbc.asd, db-odbc/*.lisp: Initial start of ODBC
2163         support
2164
2165 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2166         * Version 2.6.9
2167         * base/package.lisp: Add missing symbols [Marcus Pearce]
2168
2169 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2170         * Version 2.6.8
2171         * test/test-fddl.lisp: Cleanup fix [Marcus Pearce]
2172         * utils/time.lisp: Multiple fixes [Marcus Pearce]
2173         * sql/sql.lisp: Fix for truncate-database [Marcus Pearce]
2174         
2175 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2176         * Version 2.6.7
2177         * sql/*.lisp: Remove schema versioning cruft
2178         [Marcus Pearce]
2179         * Makefile: Add classic subdirectory
2180         
2181 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2182         * Version 2.6.6
2183         * sql/sql.lisp: Fix TRUNCATE command, bug reported
2184         by Marcus Pearce
2185         * sql/sql.lisp: Remove EXPLAIN function. Postgresql/Oracle
2186         specific and easy for an application to directly support.
2187         Idea from Marcus Pearce.
2188         * base/basic-sql.lisp: Remove DESCRIBE-TABLE top-level 
2189         API as duplicates LIST-ATTRIBUTE-TYPES [Marcus Pearce].
2190         Keep low-level interface for future optimization
2191         supporting LIST-ATTRIBUTE-TYPES command.
2192         * Makefile: Add to db-sqlite and test directories.
2193         Include them in top-level Makefile
2194         
2195 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2196         * Version 2.6.5
2197         * sql/relations.lisp: Add missing file
2198         * utils/time.lisp: Fixes/extensions [Marcus Pearce]
2199         * test/test-time.lips: New file [Marcus Pearce]
2200         
2201 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2202         * Version 2.6.4
2203         * test/test-init.lisp: Properly handle object
2204         creation. Close database after use.
2205         * sql/sql.lisp: Make DESCRIBE-TABLE a generic
2206         function so can have methods specialized on
2207         table being a string or an sql-table object.
2208         * base/pool.lisp: Really fix CMUCL locking
2209         
2210 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2211         * Version 2.6.3
2212         * test/test-init.lisp: Signal correctly
2213         if any errors occurred in any test suite
2214         * base/loop-extensions.lisp: Fix error
2215         introduced for Lispworks
2216         * base/pool.lisp: Fix locking for CMUCL
2217         * base/objects.lisp: Remove schema-version cruft
2218         
2219 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2220         * Version 2.6.2: New CLSQL API functions:
2221         DESCRIBE-TABLE AND TRUNCATE-DATABASE
2222         Currently, this are only supported on :postgresql
2223         and :postgresql-socket
2224         * base/database.lisp: automatically load ASDF system
2225         in CONNECT if not already loaded
2226         * base/tests.lisp: disconnect database after testing 
2227         * base/*.lisp: Remove CLOSED-DATABASE type in favor
2228         of storing open/closed status in slot of database
2229         * base/pool.lisp: Support locks for CMUCL, OpenMCL, SBCL
2230         * db-postgresql/postgresql-sql.lisp: add DATABASE-RECONNECT,
2231         DATABASE-DESCRIBE-TABLE
2232         * db-sqlite/sqlite-sql.lisp: Add missing slots in database
2233         * base/conditions: Remove duplicate condition
2234         * db-*/*-sql.lisp: Fill new database slot DATABASE-TYPE
2235         * base/recording.lisp: Add new :QUERY type for recording
2236         
2237 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2238         * Version 2.6.1: documentation fixes, merged
2239         classic-tests into tests
2240
2241 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2242         * Version 2.6.0 released: New API functions
2243         CREATE-DATABASE, DESTORY-DATABASE, PROBE-DATABASE
2244         * doc/ref_clsql.xml: Document new functions
2245         * base/database.lisp: New API functions
2246         * base/conditions.lisp: Added CLSQL-ACCESS-ERROR
2247         * base/utils.lisp: Fix use of position-char.
2248         Add COMMAND-OUTPUT used by backends for running
2249         external programs. Fix parsing of SQL*NET-compatible
2250         connection-specs.
2251         * base/loop-extension.lisp: Simplify package use
2252         for Lispworks and Allegro
2253         * db-*/*-sql.lisp: Added DATABASE-CREATE,
2254         DATABASE-DESTORY, PROBE-DATABASE methods
2255         * tests/test-init.lisp, clasic-tests/tests.lisp:
2256         Use destroy-database and create-database to ensure 
2257         testing with empty database
2258         * tests/test-connection.lisp: Add tests for
2259         parsing of string connection-specs
2260         * examples/run-tests.sh: New file for running
2261         test suite on all installed CL implementations
2262         * examples/clsql-tutorial.lisp: moved from
2263         doc directory
2264         * examples/dot.clsql-tests.config: New file
2265         giving an example test configuration
2266         * test/README: Add notes about rtest/ptester
2267         downloads and link to sample test configuration file.
2268         
2269 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2270         * Version 2.5.1 released:
2271         * tests/*.lisp: Rework so tests are run
2272         on multiple backends automatically based
2273         on the contents of ~/.clsql-tests.config.
2274         Reuse helper functions from classic-tests.
2275         * base/database.lisp: Support connection-spec
2276         as string for CONNECT
2277         * classic-tests/tests.lisp: Automatically
2278         load database backends as needed. 
2279         
2280 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2281         * Version 2.5.0 released:
2282         All tests for CLSQL and CLSQL-CLASSIC pass
2283         on all platforms.
2284         * base/loop-extension.lisp: Add Lispworks
2285         loop-extension. Improve type specifying on
2286         other platforms.
2287         
2288 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2289         * Version 2.4.2 released:
2290         loop extension now supported on Allegro, all
2291         CLSQL-TESTS pass on Allegro.
2292         * sql/metaclasses.lisp: Some optimization
2293         of compute-slots, be selective when
2294         ordered-class-slots needs to be called
2295         instead of class-slots
2296         * TODO: add URL with documentation on
2297         extending Lispworks LOOP form
2298         
2299 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2300         * Version 2.4.1 released: CLSQL-TESt suite passes
2301         all tests for postgresql and CMUCL, SBCL, OpenMCL.
2302         Allegro and Lispworks pass all tests except for
2303         FDML/LOOP/1 since the loop extension have not yet
2304         been ported to those implementions.
2305         * sql/metaclasses.lisp: Added new slot to standard-db-class
2306         to hold user-specified type. OpenMCL adjustments to compensate
2307         for its type-predicate function. Since AllegroCL, Lispworks,
2308         and OpenMCL have different slot orders, added compute-slots
2309         and ordered-class-slots functions so their slot order matches
2310         SBCL/CMUCL.
2311
2312 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2313         * Version 2.4.0 released: All tests for clsql-classic now finish
2314         correctly on Allegro, Lispworks, CMUCL, SBCL, OpenMCL for
2315         mysql, postgresql, postgresql-sockets, and sqlite backends.
2316         * db-mysql/mysql-sql.lisp: Fix array dereferencing
2317         * classic-tests/tests.lisp: Fix package name of
2318         number-to-sql-string. 
2319         * clsql.asd/clsql-tests.asd: Add support for asdf:test-op
2320         * db-sqlite/sqlite-api-{uffi,sql}.lisp: Multiple UFFI fixes,
2321         now passes tests on all support UFFI platforms.
2322         * db-postgresql-socket/postgresql-socket-api.list: Ported to 
2323         SBCL and OpenMCL
2324         * multiple: Finish renaming of :types keyword to :result-types for
2325         greater CommonSQL compatibility, including documentation
2326         * sql/basic-cmds.lisp: Remove obsolete file
2327         
2328 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2329         * Version 2.3.3 released
2330         * Fixes for sequences on mysql and sqlite [Marcus Pearce]
2331         * Fixes for uffi sqlite backend [Aurelio Bignoli / Kevin Rosenberg]
2332         * Fix for schema table [Marcus Pearce]
2333         * Add loop extension support for SBCL and OpenMCL [Marcus Pearce]
2334         * Fixes to test suite [Marcus Pearce]
2335
2336 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2337         * db-*/*-sql.lisp: Ensure that expr in
2338         database-query-result-set is a string
2339         * Documentation integration
2340         
2341 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2342         * With for Marcus Pearce's excellent work, I've merged
2343         his clsql-usql port into clsql. The original clsql
2344         interface is available in the clsql-classic package.
2345
2346 02 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2347         * Integrate patch from Marcus Pearce <ek735@soi.city.ac.uk>
2348         adding further support for providing backend for UncommonSQL
2349
2350 10 Mar 2004 Kevin Rosenberg (kevin@rosenberg.net)
2351         * Integrate patch from Aurelio Bignoli for SQLite backend
2352
2353 11 Nov 2003 Kevin Rosenberg (kevin@rosenberg.net)
2354         * Converted documentation to XML format
2355         * Made package installable with asdf-install
2356
2357 23 Jul 2003 Kevin Rosenberg (kevin@rosenberg.net)
2358         * Add for-each-row macro
2359
2360 12 Dec 2002 Kevin Rosenberg (kevin@rosenberg.net)
2361         * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL
2362         
2363 16 Oct 2002 Kevin Rosenberg (kevin@rosenberg.net)
2364         * Add support for SBCL, OpenMCL, and SCL
2365         * Add *load-truename* to search path for clsql's
2366         compiled libraries.
2367
2368 01 Sep 2002 Kevin Rosenberg (kevin@rosenberg.net)
2369         * Rework use of file types in .asd files
2370
2371 17 Aug 2002 Kevin Rosenberg (kevin@rosenberg.net)
2372         * Add .asd definition files for ASDF users
2373
2374 31 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
2375         * Restructure directories for Common Lisp Controller v3 compatibility
2376
2377 25 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
2378         * Also change case of logical host in loader files
2379         * Rework handling of logical pathnames
2380         
2381 05 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
2382         * Change case of logical host
2383         
2384 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
2385         * clsql-base.system: Added base package that can be used without
2386         high-level SQL commands. Used for adding support for UncommonSQL.
2387         * *.system: Reworked logical pathnames to be more consistent with
2388         Common Lisp Controller.
2389         * debian/*: Completed initial Debian support
2390         
2391 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
2392         * sql/classes.cl:
2393         * sql/transactions.cl:
2394         Added transaction support. Functions/macros added:
2395         with-transaction, commit-transaction, rollback-transaction,
2396         add-transaction-commit-hook, add-transaction-rollback-hook
2397
2398 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
2399         * sql/sql.cl:
2400         * sql/pool.cl:
2401         * sql/functional.cl:
2402         Added pool support in connect/disconnect and with-database.
2403         Removed with-db-from-pool as with-database can now works with the connections pool
2404
2405 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
2406         * sql/sql.cl:
2407         * sql/pool.cl:
2408         * sql/classes.cl:
2409         * sql/package.cl:
2410         Completed connection pool.
2411         Added with-db-from-pool macro.
2412         
2413 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
2414         * Multiple files:
2415         Added initial support for connection pool
2416         * sql/transactions.cl
2417         Took transaction code from UncommonSQL and integrated
2418         into CLSQL code. See file for disclaimer about why this
2419         was added.
2420
2421 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
2422         * interfaces/postgresql/postgresql-sql.cl:
2423         Fix keyword typo in database-read-large-object
2424         * interfaces/mysql/mysql-loader.cl
2425         Fix loading on Win32
2426         * test-suite/tester-clsql.cl
2427         Fix type coercion of double-float
2428         * doc/*
2429         Added debian docbook catalog, made it the default
2430         
2431 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
2432         * interface/postgresql/postgresql-api.cl:
2433         * interface/postgresql/postgresql-sql.cl:
2434         * sql/sql.cl:
2435         * sql/db-interface.cl:
2436         Added large objects support for postgresql.
2437
2438 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
2439         * src/postgresql-socket/postgresql-socket-api.cl:
2440         Fixed find-foreign-function call, eliminated crypt warning
2441         * Makefiles:
2442         Multiple improvements
2443         * sql/usql.cl:
2444         Moved functionality from low-level interfaces to this file
2445         via generic functions
2446         * test-suite/tester.cl:
2447         Added test with acl-compat-tester, moved others to old-tests
2448         directory.
2449         
2450 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
2451         * src/usql.cl:
2452         Reinstated commented out sections
2453         * interfaces/postgresql/postgresql-loader.cl:
2454         * interfaces/mysql/mysql-loader.cl:
2455         Updated find-forieign-library support.
2456         * interfaces/postgresql-socket/postgresql-socket-package.cl:
2457         Fixed require form for Lispworks (Thanks Marc Battyani!)
2458         * interfaces/postgresql-socket/postgresql-socket-api.cl:
2459         Fixed eval of def-function for crypt library.
2460                 
2461 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2462         * Added interface to support USQL high-level rouines
2463         
2464 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2465         * Separated db-interface and conditions from sql/sql.cl
2466         * Improved foreign library loading testing
2467         * interfaces/postgresql/postgresql-api.cl
2468         Added PQisBusy function
2469         * interfaces/clsql-uffi/clsql-uffi.cl
2470         Fixed sign error for 64-bit processing
2471         
2472 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2473         * interfaces/postgresql-socket/postgresql-socket-api.cl:
2474         Fixes to read-double-from-socket. Added 64-bit integer support.
2475         * test-suite/xptest-clsql.cl
2476         Added testint for 64-bit integers
2477         * Additons to installation docs
2478         
2479 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2480         * interfaces/postgresql-socket/postgresql-socket-api.cl:
2481         Implemented direct socket reading for field type :double
2482         * Added usage information for :types to documentation
2483         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
2484         atol, atof calls
2485         * interfaces/clsql-uffi: Created new directory. Split common
2486         interface routines that use UFFI into this package. Required
2487         especially to support direct reading of 64-bit integers into
2488         bignums and bypassing temporary strings.
2489         * test-clsql.cl: Updated to test postgresql-socket's
2490         read-double-from-socket function.
2491         * test-suite/xptest-clsql.cl
2492         Started work on test suite
2493
2494 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2495         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
2496         mysql-fetch-field-direct Got :auto types working
2497         * interfaces/postgresql/postgresql-api.cl
2498         * interfaces/postgresql-socket/postgresql-socket-api.cl
2499         Added pgsql-field-types enum. Got :auto types working.
2500         * multiple-files
2501         Renamed :field-types to :types.
2502         
2503 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2504         * Added field-types parameter to query, database-query,
2505         database-query-result-set, map-query. Haven't added code
2506         to utilize field types, yet.
2507         * Changed postgresql-socket result set from cons to a structure
2508         * Updated test-clsql.cl to use automated testing with a config
2509         file
2510         * Changed return types of field accessors from cstring to
2511         (* :unsigned-char).  This prepares for being able to use specified
2512         type conversions when taking field data into lisp.
2513         * Added field-type processing for most interfaces. Not done yet.
2514         
2515 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2516         * doc/ref.sgml: Updated MAP-QUERY example to use
2517         *read-default-float-format* (John Foderaro)
2518         * Extensive work to foreign library loaders and .system files to
2519         check for successful loading of foreign libraries.
2520         * Modified test-clsql.cl to allow more modularity and
2521         automated testing in future release.
2522         * mysql/mysql-sql.lisp: Added field types
2523         
2524 01 Jan 2002 Kevin Rosenberg (kevin@rosenberg.net)
2525         * mysql/mysql-sql.lisp:
2526         - Added support for Allegro CL and Lispworks using UFFI layer
2527         - Changed database-connect to use mysql-real-connect. This way,
2528           can avoid using double (unwind-protect)
2529         - Changed database-connect to have MySQL library allocate space
2530           for MYSQL structure. This will make the code more robust in
2531           the event that MySQL library changes the size of the mysql-mysql
2532           structure.