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