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