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