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