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