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