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