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