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