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