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