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