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