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