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