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