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