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