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