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