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