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