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