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