5881d6d2f47f95408ff8f03f5438836aed1bc9e3
[clsql.git] / ChangeLog
1 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
2         * Version 2.10.8
3         * base/conditions.lisp: Add *backend-warning-behavior*
4         special variable.
5         * db-postgresql-socket/postgresql-socket-sql.lisp:
6         Honor value of *backend-warning-behavior*
7         * tests/test-fdml.lisp: Remove test of raw boolean value
8         since different backends handle this differently.
9         * tests/test-oodml.lisp: Add test for boolean slot value
10         * tests/test-init.lisp: Use *backend-warning-behavior*
11         to suppress warnings from postgresql about implicitly
12         creating primary key in tables.
13         
14 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
15         * Version 2.10.7
16         * db-odbc/odbc-dbi.lisp: Convert TINYINT to integers when
17         result-types is :auto
18         * sql/objects.lisp: Properly handled writing/reading Boolean
19         values from SQL database when retrieving objects.
20         * test/test-fdml.lisp: Add another test for boolean results
21         * test/utils.lisp: Fix incorrect declaration
22         
23 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
24         * Version 2.10.6
25         * sql/generics.lisp: add generic function for SELECT. 
26         * sql/objects.lisp: make SELECT a method specialisation. 
27         * sql/classes.lisp: MAKE-QUERY now calls SELECT if the selections 
28         referred to are View Classes. 
29         * base/basic-sql.lisp: in DO-QUERY and MAP-QUERY, if the 
30         query-expression arg evaluates to a list, then we have an object 
31         query. 
32         * tests/test-oodml.lisp: add tests for DO-QUERY and MAP-QUERY with 
33         object queries. 
34         * TODO: remove items done and add a todo for SELECT. 
35         * sql/objects.lisp: SELECT takes a :field-names arg to pass on to 
36         QUERY. 
37         * sql/sql.lisp: add :field-names arg to QUERY. 
38         * tests/test-fdml.lisp: minor rework to use :field-names arg to 
39         SELECT. 
40
41 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk)
42         * sql/objects.lisp: fix bug in FIND-ALL when SELECT called with 2 
43         or more View Classes. 
44         * sql/objects.lisp: make the :flatp argument to SELECT work with 
45         object queries. 
46         * sql/objects.lisp: make SELECT accept a :result-types argument 
47         (defaults to :auto) which is passed on to QUERY.  
48         * sql/objects.lisp: SELECT returns field-names as a second value. 
49         * tests/test-ooddl.lisp: add flatp arg to SELECT calls as appropriate. 
50         * tests/test-fdml.lisp: add flatp/result-types arguments to calls 
51         to SELECT and take only first value as appropriate.
52         * tests/test-fdml.lisp: add two new tests for query result coercion 
53         and the field-names returned as a second value from SELECT. 
54         * tests/test-oodml.lisp: add flatp arg to SELECT calls as appropriate. 
55         
56 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
57         * Version 2.10.6-pre1
58         * sql/metaclasses.lisp: Add void-value slot
59         * doc/csql.xml: Update def-view-class documentation
60         * test/test-init.lisp: Change old :db-type to :db-kind.
61         Remove old :nulls-ok attributes.
62         * sql/objects.lisp: Add new universal-time and bigint
63         types. Optimize reading of integers using parse-integer
64         rather than read-from-string.
65         * */*.lisp: Merge clsql-base-sys and clsql-base packages
66         into clsql-base package
67         * classic/sql.lisp: Move large object support into base, leaving
68         classic without any functionality that is provided in the clsql
69         system.
70         * classic/package.lisp: Rename clsql-classic-sys package to
71         its former nickname of clsql-classic
72         
73 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
74         * Version 2.10.5: SQLite backend now passes all result-types tests
75         * clsql-sqlite.asd: Depend on clsql-uffi system
76         * db-sqlite/sqlite-sql.lisp: Use clsql-uffi:convert-raw-field
77         for efficiency and code reuse. 
78         * db-sqlite/sqlite-api-uffi.lisp: Change (* :char) to (* :unsigned-char)
79         for better cross-implementation compatibility.
80
81 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
82         * Version 2.10.4
83         * sql/tables.lisp: Fix typo in CACHE-TABLE-QUERIES
84         [Marcus Pearce]
85         * db-postgresql/postgresql-sql.lisp: Fix foreign-string vs. cstring
86         bug on SBCL in result-field-names function as reported by Marcus Pearce
87         * db-sqlite/sqlite-sql.lisp: Fix  in database-store-next-row
88         manifest in SBCL testing
89         
90 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
91         * Version 2.10.3
92         * sql/database.lisp: Conform more to CommonSQL output
93         for STATUS command [Marcus Pearce]
94         * sql/sqlite-sql.lisp: Rework to use result-types
95         * sql/sqlite-api-clisp.lisp: Add compatibility layer
96         with sqlite-api-uffi.lisp so that sqlite-sql.lisp can
97         be cleaned up of most clisp reader conditionals
98         * sql/test-init.lisp: Now run field type tests on sqlite
99         backend
100         
101 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
102         * Version 2.10.2
103         * base/basic-sql.lisp: Set default value of :result-types 
104         to :auto for more CommonSQL conformance. 
105         * test/test-fdml.lisp: Add tests for numeric value of fields
106         
107
108 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
109         * Version 2.10.1: New API function: CACHE-TABLE-QUERIES.
110         * base/basic-sql.lisp, db-*/*-sql.lisp: More CommonSQL conformance.
111         Return field names as second value for QUERY. This can be overridden
112         for efficiency with the new keyword :FIELD-NAMES set to NIL
113         in the QUERY invocation.
114         * test/test-fdml.lisp: Add tests for new field-name feature
115         * sql/metaclass.lisp: Remove old Lispworks cruft
116         and replace it with invocation of new code in kmr-mop.lisp
117         which actually works with Lispworks 4.2
118         * doc/ref_clsql.xml: Document new :FIELD-NAMES keyword to
119         QUERY function
120         * base/db-interface.lisp: Document the multiple values
121         returned by DATABASE-ATTRIBUTE-TYPE so matches the
122         undocumented CommonSQL behavior. 
123         * sql/table.lisp: Add *CACHE-TABLE-QUERIES-DEFAULT* and
124         *DEFAULT-UPDATE-OBJECTS-MAX-LEN* variables and export them.
125         LIST-ATTRIBUTE-TYPES now conforms to CommonSQL spec.
126         Implement CACHE-TABLE-QUERIES.
127         * db-odbc/odbc-sql.lisp: Fix attribute-type function
128         * test/test-fddl.lisp: Add tests for attribute type     
129         * db-mysql/mysql-sql.lisp: Mild optimization in accessing
130         field structures.
131         * base/classes.lisp: Add attribute-cache slot to database clas
132         * base/initialize.lisp: initialize-database-type now automatically
133         loads database-type backend as needed.
134         * base/test-init.lisp: Utilize new initialize-database-type functionality.
135         * TODO: remove items done
136         
137 30 Apr 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
138         * Version 2.9.6
139         * sql/objects.lisp: remove create/drop-sequence-from-class. 
140         * sql/objects.lisp: add INSTANCE-REFRESHED generic function. 
141         * sql/objects.lisp: improved CommonSQL compatibility for
142         UPDATE-RECORD-FROM-SLOT, UPDATE-RECORD-FROM-SLOTS,
143         UPDATE-RECORDS-FROM-INSTANCE and DELETE-INSTANCE-RECORDS. 
144         * sql/generics.lisp: move generics from objects.lisp to here. 
145         
146 29 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
147         * Version 2.9.6-pre1
148         * db-mysql/mysql-client-info.lisp: Add client version 4.1
149         detection
150         * sql/sql.lisp: Make *default-database* the default for
151         TRUNCATE-DATABASE
152         
153 28 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
154         * Version 2.9.5
155         * db-mysql/mysql-sql.lisp: Fix bug in transaction capability
156         detection
157         * sql/objects.lisp: Commit patch from Slawek Zak to allow specifying 
158         :metaclass in DEF-VIEW-CLASS invocation. This allows defining classes 
159         on a metaclass specialized from standard-db-class.
160
161         
162 24 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
163         * Version 2.9.4: Multiple changes to support Allegro's "modern"
164         lisp which uses a lowercase reader and has case-sensitive symbols
165         * sql/classes.lisp: Fix make-load-form bug for sql-ident-table
166         exposed by case-sensitive mlisp. 
167
168 22 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
169         * Version 2.9.3: All tests now pass on all platforms!
170         * LATEST-TEST-RESULTS: New file with summary of test results
171         * sql/generics.lisp: New file for generic function definitions.
172         * test/test-init.lisp: Display names of skipped tests.
173         Use unwind-protect to ensure disconnect
174         * sql/objects.lisp: Change database-type to database-underlying-type
175         so that actual database engine is properly identified
176         * db-odbc/odbc-api.lisp: Have default *time-conversion-function*
177         return an ISO timestring for compatibility with other drivers.
178         Workaround bug in MyODBC for LIST-TABLE-INDEXES
179         * test/test-fdml.lisp: Accomodate that odbc-postgresql driver
180         returns floating-point values for floor and truncate operations 
181         * db-aodbc/aodbc-sql.lisp: Implement DATABASE-LIST-VIEWS
182         * tests/test-basic.lisp: Port to regression tester
183         * test/test-init.lisp: Output to *report-stream*
184         * docs/appendix.xml: Document ODBC and SQLite backends.
185         * sql/classes.lisp: Make output-sql require a database parameter.
186         This allows SQL generation to have the proper case to support
187         the differences in case handling between CommonSQL API,
188         Postgresql, MySQL, Oracle.
189         
190 21 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
191         * Version 2.9.2: Improvments in database capability introspection
192         and querying. Support transactions in MySQL where available.
193         All tests now pass on MySQL and SQLite in addition to postgresql
194         and postgresql-socket. ODBC fails only with OODDL/TIME/1 and OODDL/TIME/2.
195         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST-VIEWS. Better support
196         DATABASE-LIST-SEQUENCES.
197         * clsql-uffi.asd, clsql-mysql.asd: Improve shared library loading
198         * Database_capabilies: add HAS-VIEWS, HAS-CREATE/DESTROY-DB,
199         HAS-BOOLEAN-WHERE, TRANSACTION-CAPABLE
200         * tests/*.lisp: Check database capabilities and remove tests which
201         the database backend does not support
202         * sql/table.lisp: Add :TRANSACTIONS keyword to create table which
203         controls whether InnoDB tables will be created when supported on
204         the underlying MySQL server.
205         
206 20 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
207         * Version 2.9.0: New API function: LIST-TABLE-INDEXES,
208         supported by all database backends (except AODBC since
209         AODBC doesn't support index querying)
210         * db-obdc/odbc-sql.lisp: Support DATABASE-LIST-INDEXES
211         * db-odbc/odbc-api.lisp: Add %TABLE-STATISTICS function
212         to support index queries
213         * db-aodbc/aodbc-sql.lisp: Filter driver manager
214         "information_schema" tables from LIST-TABLES
215         * tests/test-basic.lisp: Remove table after testing
216         * tests/test-fddl.lisp: Test LIST-TABLE-INDEXES
217         * base/db-interface.lisp: Add DATABASE-UNDERLYING-TYPE
218         which gets the underlying type of database -- required
219         when dealing with ODBC databases and want to query
220         database capabilities. Added DB-USE-COLUMN-ON-DROP-TABLES?
221         as first database-backend specific feature. Is T on
222         :mysql, NIL on other backends. Change DROP-TABLE to
223         query this.
224         
225 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
226         * Version 2.8.2: Build changes for FreeBSD [Slawek Zak]
227
228 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
229         * Version 2.8.1
230         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST function 
231         * db-odbc/odbc-dbi.lisp: Add LIST-ALL-DATA-SOURCES function 
232
233 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
234         * Version 2.8.0: New API function: LIST-DATABASES
235         * base/utils.lisp: Fix command-output on CMUCL/SBCL
236         * db-*/*-sql.lisp: Add new database-list function
237         * base/database.lisp: Add new LIST-DATABASES command
238         
239 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
240         * Version 2.7.9
241         * db-sqlite/sqlite-sql.lisp: Fix sequence functions.
242         * db-sqlite/sqlite-api-uffi.lisp: Print error string
243         correctly.
244         
245 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
246         * Version 2.7.7
247         * doc/csql.xml, examples/clsql-tutorial.lisp: Patch for db-kind
248         from Eduardo Munoz.
249         
250 17 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
251         * Version 2.7.6
252         * base/objects.lisp, base/classes.lisp: Patch
253         for db-kind from Eduardo Munoz
254         
255 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
256         * Version 2.7.5
257         * base/basic-sql.lisp: Fix FLATP in QUERY
258
259 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
260         * Version 2.7.3: Implement RECONNECT
261
262 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
263         * Version 2.7.2: Fix ODBC on Lispworks Windows
264
265 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
266         * Version 2.7.1: Fix for new ODBC backend.
267         clsql-odbc now works on SBCL, CMUCL, OpenMCL
268         in addition to AllegroCL and Lispworks.
269
270 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
271         * Version 2.7.0: New backend: ODBC. Tests as
272         well as AODBC backend on Allegro,Lispworks.
273         SBCL and CMUCL don't work quite yet.  Requires UFFI v1.4.11+
274         * db-odbc/*.lisp: Add ODBC3 function SQLSetEnvAttr
275         to explicitly set ODBC2 support. Add BIGINT support.
276         Add result-types support. Added SQLTables.
277         Fix array type in fetch-all-rows. Make width
278         changable by database or query.
279         * base/utils.lisp: Add process functions
280         * base/package.lisp: Export utils to CLSQL-BASE-SYS
281         * db-aodbc: Implement sequence functions,
282         database-list-tables, database-list-attributes
283         * tests/utils.lisp: Add support for ODBC backend,
284         rework READ-SPECS to use +all-db-types+
285         * db-mysql/mysql-sql.lisp: Use WITHOUT-INTERRUPTS
286         for SEQUENCE-NEXT
287         
288 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
289         * Version 2.6.13. Requires UFFI version 1.4.9
290         * db-odbc/*.lisp: Further porting.
291         Pre-alpha code! But, basic query is now working.
292
293 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
294         * Version 2.6.12
295         * base/transactions.lisp: Add quote for macro
296         expansion of WITH-TRANSACTIONS [Time Howe]
297         * db-sqlite/sqlite-sql.lisp: Support memory database
298         in database-probe [Ng Pheng Siong]
299         * db-odbc/*.lisp: Initial port to UFFI of SQL-ODBC.
300         The DBI layer is not finished.
301         
302 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
303         * Version 2.6.11
304         * sql/objects.lisp: add :root-class functionality for
305         list-classes and add duration type support [Marcus Pearce]
306         * db-odbc: Add mid-level [DBI] layer
307
308 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
309         * Version 2.6.10
310         * db-aodbc: Add methods for generic functions, some are
311         not yet implemented.
312         * clsql-odbc.asd, db-odbc/*.lisp: Initial start of ODBC
313         support
314
315 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
316         * Version 2.6.9
317         * base/package.lisp: Add missing symbols [Marcus Pearce]
318
319 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
320         * Version 2.6.8
321         * test/test-fddl.lisp: Cleanup fix [Marcus Pearce]
322         * utils/time.lisp: Multiple fixes [Marcus Pearce]
323         * sql/sql.lisp: Fix for truncate-database [Marcus Pearce]
324         
325 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
326         * Version 2.6.7
327         * sql/*.lisp: Remove schema versioning cruft
328         [Marcus Pearce]
329         * Makefile: Add classic subdirectory
330         
331 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
332         * Version 2.6.6
333         * sql/sql.lisp: Fix TRUNCATE command, bug reported
334         by Marcus Pearce
335         * sql/sql.lisp: Remove EXPLAIN function. Postgresql/Oracle
336         specific and easy for an application to directly support.
337         Idea from Marcus Pearce.
338         * base/basic-sql.lisp: Remove DESCRIBE-TABLE top-level 
339         API as duplicates LIST-ATTRIBUTE-TYPES [Marcus Pearce].
340         Keep low-level interface for future optimization
341         supporting LIST-ATTRIBUTE-TYPES command.
342         * Makefile: Add to db-sqlite and test directories.
343         Include them in top-level Makefile
344         
345 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
346         * Version 2.6.5
347         * sql/relations.lisp: Add missing file
348         * utils/time.lisp: Fixes/extensions [Marcus Pearce]
349         * test/test-time.lips: New file [Marcus Pearce]
350         
351 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
352         * Version 2.6.4
353         * test/test-init.lisp: Properly handle object
354         creation. Close database after use.
355         * sql/sql.lisp: Make DESCRIBE-TABLE a generic
356         function so can have methods specialized on
357         table being a string or an sql-table object.
358         * base/pool.lisp: Really fix CMUCL locking
359         
360 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
361         * Version 2.6.3
362         * test/test-init.lisp: Signal correctly
363         if any errors occurred in any test suite
364         * base/loop-extensions.lisp: Fix error
365         introduced for Lispworks
366         * base/pool.lisp: Fix locking for CMUCL
367         * base/objects.lisp: Remove schema-version cruft
368         
369 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
370         * Version 2.6.2: New CLSQL API functions:
371         DESCRIBE-TABLE AND TRUNCATE-DATABASE
372         Currently, this are only supported on :postgresql
373         and :postgresql-socket
374         * base/database.lisp: automatically load ASDF system
375         in CONNECT if not already loaded
376         * base/tests.lisp: disconnect database after testing 
377         * base/*.lisp: Remove CLOSED-DATABASE type in favor
378         of storing open/closed status in slot of database
379         * base/pool.lisp: Support locks for CMUCL, OpenMCL, SBCL
380         * db-postgresql/postgresql-sql.lisp: add DATABASE-RECONNECT,
381         DATABASE-DESCRIBE-TABLE
382         * db-sqlite/sqlite-sql.lisp: Add missing slots in database
383         * base/conditions: Remove duplicate condition
384         * db-*/*-sql.lisp: Fill new database slot DATABASE-TYPE
385         * base/recording.lisp: Add new :QUERY type for recording
386         
387 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
388         * Version 2.6.1: documentation fixes, merged
389         classic-tests into tests
390
391 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
392         * Version 2.6.0 released: New API functions
393         CREATE-DATABASE, DESTORY-DATABASE, PROBE-DATABASE
394         * doc/ref_clsql.xml: Document new functions
395         * base/database.lisp: New API functions
396         * base/conditions.lisp: Added CLSQL-ACCESS-ERROR
397         * base/utils.lisp: Fix use of position-char.
398         Add COMMAND-OUTPUT used by backends for running
399         external programs. Fix parsing of SQL*NET-compatible
400         connection-specs.
401         * base/loop-extension.lisp: Simplify package use
402         for Lispworks and Allegro
403         * db-*/*-sql.lisp: Added DATABASE-CREATE,
404         DATABASE-DESTORY, PROBE-DATABASE methods
405         * tests/test-init.lisp, clasic-tests/tests.lisp:
406         Use destroy-database and create-database to ensure 
407         testing with empty database
408         * tests/test-connection.lisp: Add tests for
409         parsing of string connection-specs
410         * examples/run-tests.sh: New file for running
411         test suite on all installed CL implementations
412         * examples/clsql-tutorial.lisp: moved from
413         doc directory
414         * examples/dot.clsql-tests.config: New file
415         giving an example test configuration
416         * test/README: Add notes about rtest/ptester
417         downloads and link to sample test configuration file.
418         
419 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
420         * Version 2.5.1 released:
421         * tests/*.lisp: Rework so tests are run
422         on multiple backends automatically based
423         on the contents of ~/.clsql-tests.config.
424         Reuse helper functions from classic-tests.
425         * base/database.lisp: Support connection-spec
426         as string for CONNECT
427         * classic-tests/tests.lisp: Automatically
428         load database backends as needed. 
429         
430 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
431         * Version 2.5.0 released:
432         All tests for CLSQL and CLSQL-CLASSIC pass
433         on all platforms.
434         * base/loop-extension.lisp: Add Lispworks
435         loop-extension. Improve type specifying on
436         other platforms.
437         
438 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
439         * Version 2.4.2 released:
440         loop extension now supported on Allegro, all
441         CLSQL-TESTS pass on Allegro.
442         * sql/metaclasses.lisp: Some optimization
443         of compute-slots, be selective when
444         ordered-class-slots needs to be called
445         instead of class-slots
446         * TODO: add URL with documentation on
447         extending Lispworks LOOP form
448         
449 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
450         * Version 2.4.1 released: CLSQL-TESt suite passes
451         all tests for postgresql and CMUCL, SBCL, OpenMCL.
452         Allegro and Lispworks pass all tests except for
453         FDML/LOOP/1 since the loop extension have not yet
454         been ported to those implementions.
455         * sql/metaclasses.lisp: Added new slot to standard-db-class
456         to hold user-specified type. OpenMCL adjustments to compensate
457         for its type-predicate function. Since AllegroCL, Lispworks,
458         and OpenMCL have different slot orders, added compute-slots
459         and ordered-class-slots functions so their slot order matches
460         SBCL/CMUCL.
461
462 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
463         * Version 2.4.0 released: All tests for clsql-classic now finish
464         correctly on Allegro, Lispworks, CMUCL, SBCL, OpenMCL for
465         mysql, postgresql, postgresql-sockets, and sqlite backends.
466         * db-mysql/mysql-sql.lisp: Fix array dereferencing
467         * classic-tests/tests.lisp: Fix package name of
468         number-to-sql-string. 
469         * clsql.asd/clsql-tests.asd: Add support for asdf:test-op
470         * db-sqlite/sqlite-api-{uffi,sql}.lisp: Multiple UFFI fixes,
471         now passes tests on all support UFFI platforms.
472         * db-postgresql-socket/postgresql-socket-api.list: Ported to 
473         SBCL and OpenMCL
474         * multiple: Finish renaming of :types keyword to :result-types for
475         greater CommonSQL compatibility, including documentation
476         * sql/basic-cmds.lisp: Remove obsolete file
477         
478 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
479         * Version 2.3.3 released
480         * Fixes for sequences on mysql and sqlite [Marcus Pearce]
481         * Fixes for uffi sqlite backend [Aurelio Bignoli / Kevin Rosenberg]
482         * Fix for schema table [Marcus Pearce]
483         * Add loop extension support for SBCL and OpenMCL [Marcus Pearce]
484         * Fixes to test suite [Marcus Pearce]
485
486 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
487         * db-*/*-sql.lisp: Ensure that expr in
488         database-query-result-set is a string
489         * Documentation integration
490         
491 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
492         * With for Marcus Pearce's excellent work, I've merged
493         his clsql-usql port into clsql. The original clsql
494         interface is available in the clsql-classic package.
495
496 02 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
497         * Integrate patch from Marcus Pearce <ek735@soi.city.ac.uk>
498         adding further support for providing backend for UncommonSQL
499
500 10 Mar 2004 Kevin Rosenberg (kevin@rosenberg.net)
501         * Integrate patch from Aurelio Bignoli for SQLite backend
502
503 11 Nov 2003 Kevin Rosenberg (kevin@rosenberg.net)
504         * Converted documentation to XML format
505         * Made package installable with asdf-install
506
507 23 Jul 2003 Kevin Rosenberg (kevin@rosenberg.net)
508         * Add for-each-row macro
509
510 12 Dec 2002 Kevin Rosenberg (kevin@rosenberg.net)
511         * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL
512         
513 16 Oct 2002 Kevin Rosenberg (kevin@rosenberg.net)
514         * Add support for SBCL, OpenMCL, and SCL
515         * Add *load-truename* to search path for clsql's
516         compiled libraries.
517
518 01 Sep 2002 Kevin Rosenberg (kevin@rosenberg.net)
519         * Rework use of file types in .asd files
520
521 17 Aug 2002 Kevin Rosenberg (kevin@rosenberg.net)
522         * Add .asd definition files for ASDF users
523
524 31 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
525         * Restructure directories for Common Lisp Controller v3 compatibility
526
527 25 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
528         * Also change case of logical host in loader files
529         * Rework handling of logical pathnames
530         
531 05 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
532         * Change case of logical host
533         
534 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
535         * clsql-base.system: Added base package that can be used without
536         high-level SQL commands. Used for adding support for UncommonSQL.
537         * *.system: Reworked logical pathnames to be more consistent with
538         Common Lisp Controller.
539         * debian/*: Completed initial Debian support
540         
541 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
542         * sql/classes.cl:
543         * sql/transactions.cl:
544         Added transaction support. Functions/macros added:
545         with-transaction, commit-transaction, rollback-transaction,
546         add-transaction-commit-hook, add-transaction-rollback-hook
547
548 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
549         * sql/sql.cl:
550         * sql/pool.cl:
551         * sql/functional.cl:
552         Added pool support in connect/disconnect and with-database.
553         Removed with-db-from-pool as with-database can now works with the connections pool
554
555 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
556         * sql/sql.cl:
557         * sql/pool.cl:
558         * sql/classes.cl:
559         * sql/package.cl:
560         Completed connection pool.
561         Added with-db-from-pool macro.
562         
563 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
564         * Multiple files:
565         Added initial support for connection pool
566         * sql/transactions.cl
567         Took transaction code from UncommonSQL and integrated
568         into CLSQL code. See file for disclaimer about why this
569         was added.
570
571 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
572         * interfaces/postgresql/postgresql-sql.cl:
573         Fix keyword typo in database-read-large-object
574         * interfaces/mysql/mysql-loader.cl
575         Fix loading on Win32
576         * test-suite/tester-clsql.cl
577         Fix type coercion of double-float
578         * doc/*
579         Added debian docbook catalog, made it the default
580         
581 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
582         * interface/postgresql/postgresql-api.cl:
583         * interface/postgresql/postgresql-sql.cl:
584         * sql/sql.cl:
585         * sql/db-interface.cl:
586         Added large objects support for postgresql.
587
588 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
589         * src/postgresql-socket/postgresql-socket-api.cl:
590         Fixed find-foreign-function call, eliminated crypt warning
591         * Makefiles:
592         Multiple improvements
593         * sql/usql.cl:
594         Moved functionality from low-level interfaces to this file
595         via generic functions
596         * test-suite/tester.cl:
597         Added test with acl-compat-tester, moved others to old-tests
598         directory.
599         
600 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
601         * src/usql.cl:
602         Reinstated commented out sections
603         * interfaces/postgresql/postgresql-loader.cl:
604         * interfaces/mysql/mysql-loader.cl:
605         Updated find-forieign-library support.
606         * interfaces/postgresql-socket/postgresql-socket-package.cl:
607         Fixed require form for Lispworks (Thanks Marc Battyani!)
608         * interfaces/postgresql-socket/postgresql-socket-api.cl:
609         Fixed eval of def-function for crypt library.
610                 
611 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
612         * Added interface to support USQL high-level rouines
613         
614 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
615         * Separated db-interface and conditions from sql/sql.cl
616         * Improved foreign library loading testing
617         * interfaces/postgresql/postgresql-api.cl
618         Added PQisBusy function
619         * interfaces/clsql-uffi/clsql-uffi.cl
620         Fixed sign error for 64-bit processing
621         
622 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
623         * interfaces/postgresql-socket/postgresql-socket-api.cl:
624         Fixes to read-double-from-socket. Added 64-bit integer support.
625         * test-suite/xptest-clsql.cl
626         Added testint for 64-bit integers
627         * Additons to installation docs
628         
629 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
630         * interfaces/postgresql-socket/postgresql-socket-api.cl:
631         Implemented direct socket reading for field type :double
632         * Added usage information for :types to documentation
633         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
634         atol, atof calls
635         * interfaces/clsql-uffi: Created new directory. Split common
636         interface routines that use UFFI into this package. Required
637         especially to support direct reading of 64-bit integers into
638         bignums and bypassing temporary strings.
639         * test-clsql.cl: Updated to test postgresql-socket's
640         read-double-from-socket function.
641         * test-suite/xptest-clsql.cl
642         Started work on test suite
643
644 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
645         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
646         mysql-fetch-field-direct Got :auto types working
647         * interfaces/postgresql/postgresql-api.cl
648         * interfaces/postgresql-socket/postgresql-socket-api.cl
649         Added pgsql-field-types enum. Got :auto types working.
650         * multiple-files
651         Renamed :field-types to :types.
652         
653 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
654         * Added field-types parameter to query, database-query,
655         database-query-result-set, map-query. Haven't added code
656         to utilize field types, yet.
657         * Changed postgresql-socket result set from cons to a structure
658         * Updated test-clsql.cl to use automated testing with a config
659         file
660         * Changed return types of field accessors from cstring to
661         (* :unsigned-char).  This prepares for being able to use specified
662         type conversions when taking field data into lisp.
663         * Added field-type processing for most interfaces. Not done yet.
664         
665 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
666         * doc/ref.sgml: Updated MAP-QUERY example to use
667         *read-default-float-format* (John Foderaro)
668         * Extensive work to foreign library loaders and .system files to
669         check for successful loading of foreign libraries.
670         * Modified test-clsql.cl to allow more modularity and
671         automated testing in future release.
672         * mysql/mysql-sql.lisp: Added field types
673         
674 01 Jan 2002 Kevin Rosenberg (kevin@rosenberg.net)
675         * mysql/mysql-sql.lisp:
676         - Added support for Allegro CL and Lispworks using UFFI layer
677         - Changed database-connect to use mysql-real-connect. This way,
678           can avoid using double (unwind-protect)
679         - Changed database-connect to have MySQL library allocate space
680           for MYSQL structure. This will make the code more robust in
681           the event that MySQL library changes the size of the mysql-mysql
682           structure.
683
684