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