r9739: 7 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
[clsql.git] / ChangeLog
1 7 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
2         * sql/ooddl.lisp: Added SMALLINT type
3         * sql/generic-postgresql.lisp: Added INT2 as SMALLINT type
4         * db-mysql/mysql-objects.lisp: Added SMALLINT type
5         * sql/package.lisp: Export SMALLINT
6         * sql/expressions.lisp: Add MYSQL's UNSIGNED and ZEROFILL as
7         db-constraints
8         
9 6 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
10         * sql/expressions.lisp: add AUTO-INCREMENT and UNIQUE to the 
11         recognised column constraints for CREATE-TABLE and the :DB-CONSTRAINTS 
12         View Class slot option. 
13         * sql/ooddl.lisp: fix bug preventing the :DB-CONSTRAINTS View Class 
14         slot option accepting a list of constraints [reported by Travis Cross]. 
15         * doc/ref-fddl.xml: add some examples of specifying column and 
16         table constraints to the documentation for CREATE-TABLE. 
17         * TODO: add note about adding tests for table/column constraints. Add 
18         optimisation note about using cached attribute types in insert/update
19         operations. 
20         
21 3 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
22         * doc/appendix.xml: add notes about idiosyncrasies/unsupported 
23         features and so on the documentation for each backend. 
24         * doc/TODO: remove items done. 
25         * doc/ref-transaction.xml: add note in introduction about 
26         autocommit mode as a difference from CommonSQL. 
27         * doc/ref-syntax.xml: add notes about SQL syntax state functions 
28         being macros in CLSQL. Add note about SQL operators which are 
29         CLSQL extensions. 
30
31 2 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
32         * Version 2.11.12 released
33         * doc/ref-recording.xml: document SQL I/O recording. 
34         * doc/ref-prepared.xml: new file for documenting prepared statements. 
35         * doc/clsql.xml: comment out include for large object and CLSQL-SYS 
36         documentation. 
37         * doc/ref-conditions.xml: complete documentation of condition system. 
38         * doc/global-index.xml: add symbols from condition system and remove
39         those from LOB and prepared statement APIs. 
40         * doc/ref-fdml.xml: complete documentation of FDML.
41         * doc/glossary.xml: add View Class. 
42         * doc/TODO: remove items done. 
43         * sql/conditions.lisp: make SQL-CONDITION a parent of SQL-ERROR. 
44         * sql/package.lisp: remove FOR-EACH-ROW from exports list. Export 
45         additional slot accessors for condition classes. 
46
47 1 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
48         * doc/ref-ooddl.lisp: Add documentation
49         * doc/ooddl.lisp: Move *DEFAULT-VARCHAR-LENGTH* from oodml.lisp
50         and rename to *DEFAULT-STRING-LENGTH*. Add docstring.
51         * doc/oodml.lisp: Rename references to new name of
52         *DEFAULT-STRING-LENGTH*
53
54 1 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
55         * doc/ref-transaction.xml: document transaction handling. 
56         * sql/transaction.lisp: ensure that COMMIT, ROLLBACK and 
57         START-TRANSACTION return NIL as per the CommonSQL spec. Modify 
58         ADD-TRANSACTION-{ROLLBACK|COMMIT}-HOOK such that a database is 
59         passed as a keyword argument defaulting to *DEFAULT-DATABASE*.
60         Added docstrings. 
61
62 30 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk>
63         * doc/ref-fdml.xml: document the FDML. 
64         * doc/ref-fddl.xml: move documentation for TRUNCATE-DATABASE here. 
65         * sql/ooddl.lisp: moved *default-varchar-length* to here from 
66         oodml.lisp and renamed to *default-string-length*
67         
68 23 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
69         * sql/oodml.lisp: Add keyword :transactions to def-view-from-class
70         to allow specifying transactionless table creation
71         * doc/ref-oodml.lisp: Add new keyword to signature of 
72         DEF-VIEW-FROM-CLASS     
73         
74 18 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
75         * Version 2.11.11
76         * sql/expressions.lisp: when removing duplicate table identifiers 
77         in the FROM clause of a query, check both table name and alias 
78         are equivalent. 
79         * sql/fdml.lisp: remove DESCRIBE-TABLE. 
80         * sql/db-interface.lisp: remove generics DESCRIBE-TABLE and 
81         DATABASE-DESCRIBE-TABLE. 
82         * sql/package.lisp: remove DESCRIBE-TABLE, DATABASE-DESCRIBE-TABLE 
83         and LIST-TABLE-INDEXES. 
84         * sql/generic-postgresql.lisp: add reader conditional #+nil for 
85         DATABASE-DESCRIBE-TABLE and comment about its uses for 
86         re-implementing LIST-ATTRIBUTE-TYPES with a single SQL query 
87         returning type info for all attributes. 
88         Fix DATABASE-SEQUENCE-LAST. 
89         * sql/fddl.lisp: remove LIST-TABLE-INDEXES and redefine 
90         LIST-INDEXES with additional keyword parameter :ON. 
91         * tests/test-fddl.lisp: replace LIST-TABLE-INDEXES in :fddl/index/3 
92         with LIST-INDEXES (with :ON parameter). 
93         * doc/global-index.xml: remove DESCRIBE-TABLE and LIST-TABLE-INDEXES. 
94         * doc/ref-connect.xml: minor tidying. 
95         * doc/ref-fddl.xml: document the FDDL. 
96         * doc/TODO: removed items done. Moved note about transaction handling 
97         from TODO to here. 
98         * TODO: move note about transaction handling to doc/TODO. Added 
99         optimization note about LIST-ATTRIBUTE-TYPES and LIST-INDEXES. 
100         
101 13 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
102         * Version 2.11.10
103         * sql/syntax.lisp: updated docstrings. 
104         * sql/package.lisp: exported DATABASE-NAME-FROM-SPEC from CLSQL 
105         package.
106         * sql/database.lisp: add docstrings for CREATE-DATABASE, 
107         DESTROY-DATABASE, TRUNCATE-DATABASE and LIST-DATABASES. Replace 
108         CLSQL-GENERIC-ERROR signalled in RECONNECT with SQL-CONNECTION-ERROR. 
109         * doc/ref-syntax.xml, doc/global-index.xml: minor tidying. 
110         * doc/ref-connect.xml: document connection/initialisation. 
111         * doc/ref-fdml.xml: move TRUNCATE-DATABASE reference entry here. 
112         * doc/TODO: remove items done. 
113         * Makefile: add db-oracle to to SUBDIRS. 
114
115 13 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
116         * sql/oodml.lisp: Add new serialization functions:
117         WRITE-INSTANCE-TO-STREAM and READ-INSTANCE-FROM-STREAM
118         * sql/expressions.lisp: Avoid duplicate FROM names when selecting
119         from a table that has more than one primary index.
120         * sql/conditions.lisp: Fix printing of closed-database error
121         
122 13 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
123         * Version 2.11.9
124         * sql/conditions.lisp: Set initial slot value for message in SQL-WARNING
125         * sql/transactions.lisp: Correctly set slots of SQL-WARNING
126
127 12 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk>
128         * sql/package.lisp: export DATABASE-TYPE from CLSQL and subclasses 
129         of SQL-EXPRESSION from CLSQL-SYS. 
130         * sql/syntax.lisp: make error signalled in SQL-OPERATION an 
131         SQL-USER-ERROR. Make SQL-OPERATOR return just one value. 
132         * doc/Makefile: added Mandrake linux. 
133         * doc/catalog-redhat.xml, doc/catalog-mandrake.xml: new files. 
134         * doc/appendix.xml: fixed little typo (adsf). 
135         * doc/glossary.xml: removed closed-database and note about 
136         sql-expression, added some entries. 
137         * doc/ref-syntax.xml: documented the symbolic SQL syntax. 
138
139 10 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
140         * Version 2.11.8
141         * db-mysql/mysql-loader.lisp: Remove load of unnecessary zlib library
142         * multiple: Add generalized-boolean type as requested by
143         Edi Weitz
144         * TODO: Added need for test of generalized-boolean
145         
146 9 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
147         * Version 2.11.7 released
148         * uffi/clsql-uffi-loader.lisp: Apply patch from Edi Weitz
149         for loading with clc-register-user-package. Remove personal
150         directory from path lisp.
151         * db-mysql/mysql-loader.lisp: Similar changes
152         
153 8 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
154         * Version 2.11.6 released
155         * sql/oodml.lisp: Commit patch from Edi Weitz
156         to fix symbol writing/reading
157         * TODO: Add need for symbol slot test
158         
159 7 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
160         * sql/package.lisp: remove duplicate export of 
161         *CACHE-TABLE-QUERIES-DEFAULT*. 
162         * doc/ref-*.xml, doc/global-index.xml: new files documenting 
163         the CommonSQL compatible api. 
164         * tests/test-fdml.lisp: modified the test :fdml/transaction/3 to 
165         reflect changes in return values of WITH-TRANSACTION. 
166
167 04 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
168         * tests/README: Fix filename [reported by Bill Clementson]
169         * sql/transactions.lisp: Apply return value patch from
170         Edi Weitz for WITH-TRANSACTION
171         * tests/README: Remove ptester package requirement (as noted
172         by Bill Clementson)
173         
174 03 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
175         * Version 2.11.5 released
176         * examples/clsql-tutorial.lisp: Remove obsolete :nulls-ok attribute,
177         Select connection-spec based on connection type. Bugs reported by
178         Bill Clementson.
179         * uffi/uffi.dll, uffi/uffi.lib: Recompile with Visual Studio 2003
180         * db-mysql/mysql-loader.lisp: Update check for zlibwapi library
181         name on Windows, add \bin\ directory to search path
182         
183 31 May 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
184         * db-odbc/odbc-sql.lisp: DB-TYPE replaced with DATABASE-TYPE in 
185         DATABASE-CONNECT. 
186         * sql/operations.lisp: substr now generates SUBSTR for use on 
187         Oracle; added a new operator SUBSTRING for use elsewhere. minus 
188         now generates MINUS for use on Oracle. Nvl signals an error if 
189         not called with exactly 2 arguments. Add concat function for use 
190         instead of the || operator on MySQL and Oracle. 
191         * sql/syntax.lisp: changed internal symbol for the || operator to 
192         CONCAT-OP. 
193         * sql/expressions.lisp: removed redundant and unused functions 
194         GENERATE-SQL (cf. SQL-OUTPUT) and DATABASE-CONSTRAINT-DESCRIPTION
195         (cf. MAKE-CONSTRAINTS-DESCRIPTION). 
196         * sql/generics.lisp: removed generic function for 
197         DATABASE-CONSTRAINT-DESCRIPTION (see above). 
198         * tests/test-syntax.lisp: modified/added tests according to changes
199         in sql/operations.lisp. 
200         * tests/test-fdml.lisp: changed SUBSTR to SUBSTRING in test 
201         :fdml/select/21.  
202         * sql/package.lisp: added the operators SQL-SUBSTRING, SQL-CONCAT-OP 
203         and SQL-USERENV to the shared exports list. Removed 
204         ROLLBACK-TRANSACTION, COMMIT-TRANSACTION, DATABASE-START-TRANSACTION, 
205         DATABASE-ABORT-TRANSACTION, DATABASE-COMMIT-TRANSACTION, 
206         TRANSACTION-LEVEL, TRANSACTION,  RECORD-SQL-COMMAND and 
207         RECORD-SQL-RESULT from shared exports list. 
208         
209 30 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
210         * db-postgresql/postgresl-sql.lisp: Avoid computing
211         result-types lisp when nil result-types. Return only
212         one value when field-types nil.
213         * db-mysql/mysql-sql.lisp: Simple queries now
214         working with prepared statements.
215         
216 30 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
217         * Version 2.11.4: MySQL 4.1 now passes all tests
218         * sql/package.lisp: Add API for prepared statments.
219         * sql/fdml.lisp: Change implicit flatp processing
220         for string map-query for greater CommonSQL conformance.
221         Add high-high API for prepared statements.
222         * tests/test-basic.lisp: Add test for map-query and
223         single argument.
224         * sql/transactions.lisp: Change name/semantics of
225         autocommit to set-autocommit.
226         * sql/generic-postgresql.lisp: Add support for
227         prepared statements. 
228         * tests/test-internal.lisp: New file
229         * sql/odbc-api.lisp: Update to using ODBC V3 protocol
230         * clsql-mysql.asd, clsql-uffi.asd: Remove check and Common Lisp
231         Controller invocation.
232         * db-mysql/mysql-api.lisp: Add support for MySQL 4.1 field structure
233         * sql/expressions.lisp: Avoid emitting double parenthesis when a
234         function contains a subselect. 
235         
236 27 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
237         * Version 2.11.3
238         * sql/ooddl.lisp: Commit patch from Edi Weitz fixing return
239         type (setf slot-value-using-class)
240         * TODO: add not that need a test case for the above fix
241         * db-sqlite: Remove clisp support since clisp can not run CLSQL
242         with its MOP usage
243         * db-oracle/oracle-sql.lisp: By default, use OCIEnvCreate as 
244         introduced in Oracle8. Leave older code selectable by a reader macro
245         for Oracle7 and prior. Avoid use of OCIServerAttach since CLSQL
246         uses OCILogon and does not the more complex session management.
247         
248 26 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
249         * sql/oodml.lisp: Commit universal-time typo patch from Edi Weitz
250         * test/test-init.lisp: Add universal-time slot to person.
251         * test/test-fddl.lisp: Add tests of universal-time slot
252         * test/test-ooddl.lisp: Test universal-time slot in an object
253         * TODO: Remove need for universal-time test     
254         * debian/rules, debian/control: Add cl-sql-oracle binary package
255         * doc/appendix.xml: Add Oracle backend information
256         * db-oracle/oracle-objects.lisp: Add database-get-type-specifier for
257         universal-time. Convert BIGINT CLSQL type to CHAR SQL type
258         * db-mysql/mysql-sql.lisp: Fix condition name to sql-connection-error
259         * doc/ref-clsql.xml: Renamed from ref_clsql.xml. Change the documentation
260         for map-query to reflect changed in arguments to be CommonSQL compatible.
261         Updated old clsql conditions to new CommonSQL compatible conditions.
262         
263 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
264         * sql/oodml.lisp: (string n) now produces a CHAR field. Add new VARCHAR
265         type. Added *default-varchar-length* rather than previous hard-coded
266         varchar length. Remove 'simple-string and 'simple-base-string since they
267         are subtypes of 'string.
268         * db-oracle/oracle-sql.lisp: Use *default-varchar-length* rather than
269         local hard-coded value.
270         * sql/metaclasses.lisp: Convert specified type VARCHAR and (VARCHAR n) to Lisp
271         type string. Convert specified-type (CHAR n) to string. Convert specified-type
272         CHAR to lisp type character.
273         * sql/generic-postgresql.lisp: (string n) => (CHAR n)
274         * sql/operations.lisp: Add userenv
275         * doc/TODO: Add AUTOCOMMIT. Remove need for large table and bigint
276         slot tests
277         * sql/oracle-sql.lisp: Add 64-bit bigint direct conversion
278         * uffi/clsql-uffi.lisp: Handle signed 64-bit integers
279         * test/test-init.lisp: Add large table with bigint slot
280         
281 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
282         * Version 2.11.1 released: Much simpler Oracle client library loading.
283         Now uses ORACLE_HOME environmental variable as well as tests default
284         path for Oracle Instant Client. 
285         
286 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
287         * Version 2.11.0 released: Full Oracle support. All tests pass
288         * db-oracle/oracle-sql.lisp: Add declaration so that SBCL runs efficiently.
289         * tests/test-init.lisp: capitalize odbc backend name in banner
290         * CONTRIBUTORS: Add note about Marcus' excellent work
291         * sql/oodml.lisp: Removed old stub function     
292         * clsql.asd: Use module names in current package rather than keyword package
293         * db-oracle/oracle-sql.lisp: Don't trim trailing spaces. Prevent interrupts
294         in setting sequence position. Make autocommits more efficient.
295         * tests/test-init.lisp: Skip 2 tests on Oracle which have unsupported syntax 
296         * sql/oodml.lisp: Get rid of undocumented raw-string type. CommonSQL
297         strings are raw (non-trimmed trailing whitespace). Add database-get-type-specifier
298         and read-sql-value for NUMBER and CHAR.
299         * sql/base-classes.lisp: Add autocommit slot
300         * sql/transaction.lisp: Added autocommit processing, mild cleaning.
301         * doc/intro.xml: Add Oracle
302         
303 24 May 2004: Marcus Pearce (m.t.pearce@city.ac.uk) 
304         * db-postgresql-socket/postgresql-socket-sql.lisp: replace 
305         CLSQL-SIMPLE-WARNING with SQL-WARNING. 
306         * db-sqlite/sqlite-sql.lisp: replace CLSQL-SIMPLE-WARNING with 
307         SQL-WARNING. 
308         * db-aodbc/aodbc-sql.lisp: replace CLSQL-ERROR with SQL-ERROR. 
309         * clsql.asd: reworked module structure in package definition and 
310         file names to better reflect component functionality. 
311         * sql/package.lisp: added SQL-FATAL-ERROR and SQL-TIMEOUT-ERROR to 
312         exports list. Removed duplicate and obsolete exports. Exported 
313         remaining SQL operations: SQL-SOME, SQL-<>, SQL-BETWEEN, SQL-DISTINCT, 
314         SQL-NVL and SQL-FUNCTION. Organised exports by functionality/file and 
315         according to whether they are specified by CommonSQL or CLSQL 
316         extensions. 
317         * sql/transaction.lisp: replace CLSQL-SIMPLE-WARNING with 
318         SQL-WARNING. 
319         * sql/generics.lisp: moved generics for QUERY and EXECUTE-COMMAND 
320         here from basic-sql.lisp. 
321         * sql/expressions.lisp: NEW FILE: renamed from classes.lisp (deleted). 
322         * sql/fddl.lisp: NEW FILE: renamed from table.lisp (deleted). 
323         * sql/fdml.lisp: NEW FILE: merger of basic-sql.lisp and sql.lisp
324         (both deleted). 
325         * sql/ooddl.lisp: NEW FILE: ooddl from objects.lisp (deleted). 
326         * sql/oodml.lisp: NEW FILE: oodml from objects.lisp (deleted). 
327         
328 23 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
329         * Version 2.10.22 released
330         * sql/kmr-mop.lisp, sql/objects.lisp: Since SBCL is the only implementation that
331         has reversed class slots, change the default for ordered-class-slots so that slots
332         are now in the same order an in the def-view-class.
333         * sql/sql.lisp: Honor case of string table identifier to INSERT-RECORDS
334         * test/test-fddl.lisp: Add two tests for mixed case names
335         * db-oracle/oracle-sql.lisp: Add missing database qualifier. Return NUMBER (double)
336         for computed fields, this will require some adjustment to the test suite which
337         in many cases expects integers.
338         * test/test-fdml.lisp: Accomodate that Oracle returns doubles for computed columns
339         
340 22 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
341         * Version 2.10.21 released
342         * sql/sequences.lisp: Move generic sequence functions here from db-sqlite,
343         db-odbc, and db-aodbc.
344         * sql/*.lisp: Add db-type parameter to generic functions READ-SQL-VALUE,
345         DATABASE-GET-TYPE-SPECIFIER, and OUTPUT-SQL-VALUE-AS-TYPE. Update methods to use these.
346         * sql/generic-postgresql.lisp, sql/generic-odbc.lisp: New files
347         * db-odbc/odbc-sql.lisp, db-aodbc/aodbc-sql.lisp: Move common code to 
348         sql/generic-odbc.lisp
349         * db-postgresql/postgresql-sql.lisp, db-postgresql-socket/postgresql-socket-sql.lisp: 
350         Move common code to  sql/generic-postgresql.lisp
351         * sql/classes.lisp: honor case of string tables when outputting queries 
352         * sql/objects.lisp: Add database type to default database-get-type-specifier method
353         * sql/sql.lisp:  Add database type to default database-abort-transaction method
354         * db-mysql/mysql-objects.lisp: New file
355         * sql/objects.lisp: Move MySQL specific code to mysql-objects.lisp
356         * sql/utils.lisp: Add GETENV function which will be used to get ORACLE_HOME
357         from environment
358         * test/test-fdml.lisp: String table names are now case sensitive, so convert to
359         default db case for FDML/SELECT/25
360
361 22 May 2004 Kevin Rosenberg
362         * Version 2.10.20 released: Oracle backend now fails 6 out of 200 tests
363         * TODO: Added 2 variances from CommonSQL. Add tests for owner phrases
364         and string identifiers with non-default case
365         * sql/table.lisp: Don't convert string table name to a symbol.
366         * sql/classes.lisp: Honor case of string identifiers
367         * sql/sql.lisp: Ensure recyclebin is purged for Oracle in 
368         TRUNCATE-DATABASE
369         * db-oracle/oracle-sql.lisp: Add sequence functions, fix use of
370         of owner phrases. Obtain server and client versions.
371         * db-oracle/oracle-objects.lisp: Fix type specifiers
372         * tests/test-fddl.lisp: Allow :varchar2 and :number as data types
373         * tests/test-init.lisp: Properly get username from Oracle connection-spec
374         
375 22 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
376         * sql/generics.lisp: reworked docstrings. Remove generics for 
377         ADD-TO-RELATION and REMOVE-FROM-RELATION. 
378         * sql/objects.lisp: reworked docstrings. Changed UPDATE-OBJECT-JOINS 
379         to UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
380         * sql/package.lisp: Changed UPDATE-OBJECT-JOINS to UPDATE-OBJECTS-JOINS 
381         for CommonSQL compatibility. Remove ADD-TO-RELATION and 
382         REMOVE-FROM-RELATION. 
383         * tests/test-oodml.lisp: Changed UPDATE-OBJECT-JOINS to 
384         UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
385         * doc/TODO: added notes about extra slot options to DEF-VIEW-CLASS. 
386         * sql/conditions.lisp: add documentation for conditions. Add 
387         SQL-TIMEOUT-ERROR and SQL-FATAL-ERROR for CommonSQL compatibility. 
388
389 21 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
390         * sql/basic-sql.lisp: reworked docstrings. 
391         * sql/transactions.lisp: reworked docstrings. 
392         * sql/sql.lisp: reworked docstrings. 
393         * sql/initialize.lisp: reworked docstrings. INITIALIZE-DATABASE-TYPE 
394         sets *DEFAULT-DATABASE-TYPE* for CommonSQL compatibility. 
395         * sql/database.lisp: reworked docstrings. 
396         * doc/TODO: added notes about START-TRANSACTION and IN-TRANSACTION-P 
397         and FDML extensions and database extensions. 
398
399 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
400         * db-oracle/oracle-sql: Use clsql-specific error conditions. Use owner keyword.
401         * db-oracle/make9.sh: add makefile for building with Oracle 9 client
402         libraries
403         * sql/table.lisp: Add logic for dealing with Oracle 10g vs. previous
404         Oracle versions with the PURGE option required for drop table. This needs
405         to be converted to a generic function and moved to db-oracle/oracle-sql.lisp
406
407 20 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
408         * sql/classes.lisp: remove unused PARAMS slot in SQL-IDENT-ATTRIBUTE. 
409         * sql/syntax.lisp: remove unused PARAMS keyword arg to SQL-EXPRESSION. 
410         * sql/table.lisp: reworked docstrings. 
411         * sql/objects.lisp: moved *default-update-objects-max-len* here from 
412         table.lisp. 
413         * doc/TODO: notes about :if-does-not-exist arg to DROP-TABLE, 
414         DROP-VIEW and DROP-INDEX and the use of the :transactions and 
415         :constraints keyword args to CREATE-TABLE. 
416         * sql/classes.lisp: the DESCRIPTION argument to CREATE-TABLE is now 
417         CommonSQL compatible with respect to column constraints. 
418
419 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
420         * sql/oracle-sql.lisp: Now compiles and runs on SBCL.
421         Requires UFFI 1.5.0 or higher
422         
423 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
424         * Version 2.10.19
425         * sql/conditions.lisp: Fix cerror
426         
427 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
428         * Version 2.10.18 released: New condition hierarchy to be compatible
429         with CommonSQL -- not backward compatible with previous CLSQL.
430         * sql/db-interface.lisp: Add more default methods
431         * sql/objects.lisp: Add explicit table name to order-by parameters
432         in find-all when only one table to avoid selecting a duplicate row.
433         Fix error in FIND-ALL when using :order-by such as (([foo] :asc))
434         as previous logic was adding two fields (foo asc) to SELECT query.
435         Make :result-types :auto be the default for object selections.
436         Properly handle caching key when using multiple order-by with asc/desc
437         directions.
438         * db-oracle/*.lisp: Much improvements, now passes 90% of test suite
439         
440 19 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
441         * sql/recording.lisp: reworked docstrings. 
442         * sql/syntax.lisp: reworked docstrings. 
443         * doc/TODO: added notes about extensions to SQL-RECORDING-P and the 
444         SQL syntax state functions being macros. 
445
446 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
447         * sql/package.lisp: Export initialize-database-type and
448         *initialize-database-types* from CLSQL package.
449         * sql/conditions.lisp: Add new CommonSQL compatible conditions,
450         remove old CLSQL conditions.
451         * sql/loop-extensions.lisp: Make errors of type sql-user-error
452         * */*.lisp: Convert to from old to new conditions
453         
454 18 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
455         * sql/table.lisp: Add PURGE to drop command for oracle 10g backend.
456         To handle this difference, will need to add a new database-drop-table
457         generic function.
458         * db-oracle/oracle-sql.lisp: Move server-version and
459         major-version-number to database object to allow multiple connections
460         to Oracle servers of different versions.
461         
462 18 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
463         * TODO: moved notes about backends to doc/TODO. 
464         * doc/TODO: added notes about backends and select extensions. 
465         * sql/base-classes.lisp: remove obsolete schema slot in database 
466         class. 
467         
468 16 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
469         * db-oracle/oracle-api: Add OCIServerVersion
470         * db-oracle/oracle-sql: Query and store server version on connect
471         * sql/db-interface.lisp: Add new db-type-has-bigint? generic
472         function to handle OCI's lack of bigint support
473         * test/test-basic.lisp: Separate bigint testing
474         * test/test-utils.lisp: Add oracle to specs and list of backends
475         * doc/TODO: New file
476         * test/test-fdml.lisp: Added FDML/SELECT/34 to test
477         run-time instantiation of variables in reader macros.
478         * TODO: Remove item already complete. Add note about
479         condition variances
480         
481 16 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
482         * sql/syntax.lisp: added condition to the reader macro to treat [*] 
483         as a column identifier (rather than an operation) for CommonSQL 
484         compatibility. 
485         * tests/test-fdml.lisp: add tests for ORDER-BY and SET-OPERATION 
486         keword args to SELECT, [*] as column identifier, new MAP-QUERY 
487         behaviour and the ANY and ALL operators in subqueries. 
488         * tests/test-init.lisp: add set-operation and subquery tests to 
489         appropriate skip lists. 
490         * sql/objects.lisp: remove redundant and non CommonSQL compatible 
491         ORDER-BY-DESCENDING keyword argument for SELECT. 
492         * sql/classes.lisp: remove redundant and non CommonSQL compatible 
493         ORDER-BY-DESCENDING keyword argument for SELECT. 
494         * tests/test-oodml.lisp: add test for ORDER-BY keyword to SELECT 
495         with object queries. 
496
497 15 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
498         * sql/db-interface.lisp: Add new db-type-has-union? 
499         since Mysql 3.23 does not support unions.
500         * sql/test-init.lisp: Don't try union tests on database
501         backends which do not support it.
502         * db-oracle/*.lisp: initial port to UFFI
503         * sql/objects.lisp: implement UPDATE-OBJECT-JOINS,
504         implement REFRESH for SELECT.
505         * tests/test-oodml.lisp: Add tests for deferred retrieval,
506         caching, refresh, and update-object-joins
507         * tests/test-init.lisp: Add deferred-employee-address class
508         
509 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
510         * sql/operations.lisp: make MINUS operator a synonym for EXCEPT. Add 
511         COALESCE operator and make NVL a synonym for this. Make ANY, SOME, 
512         ALL and EXISTS generate function expressions so they output the 
513         correct SQL. 
514         * sql/classes.lisp: SELECT now generates appropriate SQL when 
515         passed the SET-OPERATION and ALL keyword arguments. 
516         * sql/classes.lisp: the ORDER-BY keyword argument to SELECT now 
517         accepts ordering constraints as pairs of the form (column direction) 
518         where direction may be :ASC or :DESC. 
519         * tests/test-syntax.lisp: added tests for MINUS and COALESCE/NVL. 
520         Correct tests for ANY, SOME, ALL and EXISTS. 
521         * tests/test-fdml.lisp: added test for COALESCE. 
522         * sql/sql.lisp: MAP-QUERY now applies FUNCTION to QUERY-EXPRESSION 
523         using funcall unless QUERY-EXPRESSION returns one column and its 
524         FLATP slot is not nil in which case apply is used. 
525         * tests/test-basic.lisp: modified calls to MAP-QUERY to reflect the 
526         changes. 
527         * TODO: remove items done. 
528         * db-postgresql/postgresql-sql.lisp: no need to reverse results in 
529         DATABASE-LIST-ATTRIBUTES. 
530         * db-postgresql-socket/postgresql-socket-sql.lisp: no need to reverse
531         results in DATABASE-LIST-ATTRIBUTES.    
532         
533 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
534         * sql/classes.lisp: SELECT now accepts table identifiers as strings 
535         for CommonSQL compliance. Add support for qualified sql identifiers 
536         with aliased table names. 
537         * tests/test-fdml.lisp: added tests for table identifiers as strings 
538         in SELECT and for aliased definitions. 
539         * tests/test-syntax.lisp: added tests for alias definitions. 
540         
541 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
542         * sql/sql.lisp: PRINT-QUERY now calls QUERY with result-types and 
543         field-names set to nil. 
544         * sql/sql.lisp: PRINT-QUERY now computes column sizes correctly 
545         with null attribute values. 
546         * sql/operations.lisp: modify SQL concatenation operator to accept 
547         unescaped || symbol.  
548         * sql/syntax.lisp: modify sql reader macro function to accept 
549         unescaped sql concatenation operator. 
550         * tests/test-fdml.lisp: unescape sql concatenation operator. 
551         * tests/test-syntax.lisp: unescape sql concatenation operator. 
552         * TODO: remove items done. Add notes about SQLITE/MYSQL backends. 
553         Note to add test for universal-time. Note about difference from 
554         CommonSQL in transaction handling. 
555
556 13 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
557         * tests/test-init.lisp: Add deferred-employee-address
558         class
559         * tests/test-oodml.lisp: Add deferred retrieval testgs
560         
561 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
562         * Version 2.10.17
563         * LATEST-TEST-RESULTS: Run on all platforms, add AMD64
564         * sql/sql.lisp: Add FOR-EACH-ROW macro from clsql-classic/sql.lisp
565         * db-sqlite/sqlite-uffi-api.lisp: Fix row-pointer type
566         * *: Fix minor style warnings
567         * clsql-classic: Remove system and subdirectory
568         * clsql-base: Remove system and subdirectory and
569         fold into clsql system
570         * doc/intro.xml: Remove reference to old clsql-base. Add x86_64
571         as supported platform.
572         
573 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
574         * Version 2.10.16: CLSQL now fully supports AllegroCL AMD64
575         * db-odbc/odbc-api.lisp: work around return-type bug [spr28889] in
576         Allegro 7.0beta AMD64
577         * db-odbc/*.lisp: Add a layer of indirection to foreign-type
578         of ODBC longs since this type can vary on 64-bit platforms depending
579         upon the compilation options of unixODBC.
580         * db-mysql/mysql-api.lisp: Fix int vs. long slots in foreign
581         structures found by testing with AllegroCL 7.0b AMD64.
582         * db-*/*-loader.lisp: Load 64-bit libraries on 64-bit platorms
583         * sql/objects.lisp: Simple implementation of UPDATE-OBJECT-JOINS.
584         Initial caching support for SELECT
585         * tests/test-oodml.lisp: Avoid using cache when testing select.
586         * sql/kmr-mop.lisp: Explicitly check slot order and
587         store as a cl:*feature*
588         * sql/recording.lisp: Remove additional types to
589         increase CommonSQL conformance.
590         * tests/test-init.lisp: Change a :column attribute
591         to test symbols as value
592         * sql/relations.lisp: Remove functions since they don't support
593         many to many relationships.
594         * examples/clsql-tutorial.lisp, doc/csql.lisp: Remove use
595         of add-to-relations function and replace with explicit field settings.
596         * base/classes.lisp: Remove obsolute query-stream. Add record-caches slot.
597         
598 9 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
599         * Version 2.10.15
600         * LATEST-TEST-RESULTS: results with current version
601         * sql/kmr-mop.lisp: Make CMUCL reader macros specific for cmu18
602         since cmu19 has opposite order of class slots.
603         * sql/objects.lisp: Fix (setf slot-value-using-class) for Lispworks
604         * tests/test-fdml.lisp: Renumber SELECT tests to avoid overwriting
605         a previous test
606         * tests/test-init.lisp: Check test-database-underlying-type for
607         ODBC/MySQL tests
608         
609 8 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
610         * sql/operations.lisp: complete remaining operations for the sql 
611         syntax: SUBSTR, SOME, ORDER-BY, GROUP-BY, NULL, DISTINCT, EXCEPT, 
612         UNION, INTERSECT, BETWEEN. 
613         * sql/classes.lisp: add new classes: SQL-BETWEEN-EXPRESSION, 
614         SQL-QUERY-MODIFIER-EXPRESSION and SQL-SET-EXPRESSION. 
615         * tests/test-syntax.lisp: add tests for new operations. 
616         * tests/test-fdml.lisp: add tests for queries based on new operations. 
617         * tests/test-init.lisp: add select/20 to tests skipped for sqlite and 
618         select/20, query/5, query/7 and query/8 to tests skipped by mysql. 
619         * TODO: removed entries done. 
620
621 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
622         * tests/benchmarks.lisp: Add immediate vs. deferred
623         join test.
624         
625 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
626         * Version 2.10.13: Now works on openmcl 0.14.2 
627         * sql/objects.lisp: Add :retrieval :immediate for
628         object selections
629         * tests/test-init.lisp: Add non-index fields for testing 
630         join class employee-addresss
631         * test/test-oodml.lisp: Add tests for retrieval immediate
632         * sql/metaclasses.lisp: Handle differences in direct-slot-definition 
633         values which are now listifed by openmcl 14.2.
634         * sql/objects.lisp: more framework for supporing immediate retrieval 
635
636 7 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
637         * docs/intro.xml: Upload location of a README file
638         * sql/metaclass.lisp: Work-around openmcl's CHANGE-CLASS
639         changing the type-specifier. Use a lisp type of (OR NULL FOO)
640         for a specified-type of FOO unless :db-constraints :not-null.
641         No need to specialize finalize-inheritance for openmcl.
642         * tests/test-*.lisp: Rename fields so that joins occur on
643         fields with different names. This ensures that join code is
644         selecting the proper name.
645         * test/test-init.lisp: Add :base-table for employee-address
646         view class for testing.
647         * sql/objects.lisp: Use view-table rather than name of table
648         in a number of places to fix errors noted with using :base-table.
649
650 6 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
651         * sql/objects.lisp: replace *update-records-on-make-instance* with 
652         *db-auto-sync* which also controls both automatic creation of 
653         new records on creation of new instance and updating of record 
654         fields on setting of instance slots (as suggested by Edi Weitz). 
655         * tests/test-init.lisp: replace *update-records-on-make-instance* 
656         with *db-auto-sync*. 
657         * sql/package.lisp: replace *update-records-on-make-instance* 
658         with *db-auto-sync*. 
659         * TODO: replace *update-records-on-make-instance* with *db-auto-sync*. 
660         * sql/objects.lisp: remove redundant rebindings of *db-initializing* 
661         and *default-database* in FIND-ALL. 
662         * sql/package.lisp: import time functions from CLSQL-BASE. 
663         * tests/test-time.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
664         * tests/test-fdml.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
665         * tests/test-init.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
666         * tests/test-ooddl.lisp: replace CLSQl-BASE package qualifier with 
667         CLSQL. 
668
669 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
670         * sql/classes.lisp: Add SQL-OBJECT-QUERY type. Have [select 'class]
671         now return a sql-object-query type rather than directly performing a query.
672         This improves CommonSQL conformance.
673         * sql/sql.lisp: Add new QUERY method for SQL-OBJECT-QUERY. Move
674         from basic/basic-sql.lisp the DO-QUERY and MAP-QUERY since they now
675         depend on sql-object-query-type.
676         * sql/loop-extensions.lisp: Move from base package
677         * classic/package.lisp: remove references to map-query and do-query
678
679 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
680         * TODO: New section on optimizations, especially optimizing JOINs.
681         * sql/objects.lisp: Have :target-slot return of list of lists rather
682         than a list of cons pairs to be conformant with CommonSQL.
683         Make :target-slot much more efficient by using a SQL inner join
684         statement and just requiring one SQL query. Add :retrieval :deferrred
685         to target-slot joins. Add placeholder for update-objects-join.
686         * sql/classes.lisp: Add :inner-join and :on slots to sql-query class
687         and process them for query output-sql. 
688
689 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
690         * Version 2.10.11
691         * base/basic-sql.lisp: Avoid multiple evaluation
692         of query-expression in DO-QUERY
693         * sql/objects.lisp: Make SELECT a normal function.
694         SELECT now accepts type-modified database identifiers, such as
695         [foo :string] which means that the values in column foo are returned 
696         as Lisp strings. Add new *update-records-on-make-instance* special
697         variable controlling automatic creation of new instances. Add missing
698         RESULT-TYPES keyword to FIND-ALL. Add :target-slot support.
699         * sql/packages.lisp: Export *update-records-on-make-instance* 
700         * test/test-oodml.lisp: Add tests for :target-slot and many-to-many
701         selections.
702         * test/test-fdml.lisp: Add tests for type-modified
703         database identifiers.
704         * test/test-init.lisp: Stop using add-relation since implementing
705         many-to-many joins. Use *update-records-on-make-instance* 
706         to automatically store records on instance creation. Add many-to-many
707         employee-address view-class.
708         
709 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
710         * Version 2.10.10
711         * base/loop.lisp: Add object iteration. Use :result-type
712         :auto for result-set. Remove 
713         duplicate (and non-correct) code for non-list variables by
714         simply making an atom variable into a list. 
715         * sql/package.lisp: Remove unnecessary clsql-sys package
716         and replace it with clsql.
717         * sql/metaclasses.lisp: Properly store specified-type from
718         direct-slot-definition and then store translated type in
719         effective-slot-definition
720         * sql/classes.lisp: Don't output type in sql-output
721         for SQL-IDENT-ATTRIBUTE. This is in preparation for supporting
722         [foo :integer] as fields in SELECT.
723         * sql/query.lisp: Set default for :result-types to :auto in
724         FDML QUERY.
725         * sql/objects.lisp: Use specified-type when invocating 
726         database-get-type-specifier. def-view-class macro now returns
727         the class instance.
728         * base/basic-sql.lisp: Make :AUTO the default value for
729         :RESULT-TYPES for MAP-QUERY and DO-QUERY.
730         * sql/objects.lisp: Add bigint type
731         * test/tests-basic.lisp: Add tests for :result-types for
732         MAP-QUERY and DO-QUERY
733         * test/test-fdml.lisp: Add test for result-types in LOOP
734         and also using single symbol rather than a list for variables.
735         Add test that default :result-types is auto for FDML QUERY.
736         * test/test-syntax.lisp: Don't expect TYPE in the SQL-OUTPUT
737         of SQL-IDENT-ATTRIBUTE.
738         * test/test-oodml.lisp: Enable OO loop iteration test,
739         modify it so it doesn't depend on boolean where.
740         
741 4 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
742         * Version 2.10.9
743         * sql/objects.lisp: added derived type specifier for universal time. 
744         * sql/package.lisp: added #:universal-time to clsql-sys exports. 
745         * tests/test-oodml.lisp: added test for translation of boolean slots 
746         in SELECT with object queries. 
747         
748 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
749         * db-odbc/odbc-api.lisp: Fix changing nil to "NIL" 
750         for odbc/postgresql backend.
751         * db-odbc/odbc-sql.lisp: Fix ATTRIBUTE-TYPE so that
752         it can handle NIL values from the ODBC driver
753         * tests/benchmarks.lisp: New file with initial
754         benchmark suite
755         * sql/relations.lisp: fix to add subclassing support,
756         minor optimizations [Edi Weitz]
757         
758 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
759         * Version 2.10.8        
760         * base/conditions.lisp: Add *backend-warning-behavior*
761         special variable.
762         * db-postgresql-socket/postgresql-socket-sql.lisp:
763         Honor value of *backend-warning-behavior*
764         * tests/test-fdml.lisp: Remove test of raw boolean value
765         since different backends handle this differently. Add
766         test for :column attribute.
767         * tests/test-oodml.lisp: Add tests for boolean slot value
768         and for :void-value attribute
769         * tests/test-init.lisp: Use *backend-warning-behavior*
770         to suppress warnings from postgresql about implicitly
771         creating primary key in tables. Add new address table.
772         
773 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
774         * Version 2.10.7
775         * db-odbc/odbc-dbi.lisp: Convert TINYINT to integers when
776         result-types is :auto
777         * sql/objects.lisp: Properly handled writing/reading Boolean
778         values from SQL database when retrieving objects.
779         * test/test-fdml.lisp: Add another test for boolean results
780         * test/utils.lisp: Fix incorrect declaration
781         
782 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
783         * Version 2.10.6
784         * sql/generics.lisp: add generic function for SELECT. 
785         * sql/objects.lisp: make SELECT a method specialisation. 
786         * sql/classes.lisp: MAKE-QUERY now calls SELECT if the selections 
787         referred to are View Classes. 
788         * base/basic-sql.lisp: in DO-QUERY and MAP-QUERY, if the 
789         query-expression arg evaluates to a list, then we have an object 
790         query. 
791         * tests/test-oodml.lisp: add tests for DO-QUERY and MAP-QUERY with 
792         object queries. 
793         * TODO: remove items done and add a todo for SELECT. 
794         * sql/objects.lisp: SELECT takes a :field-names arg to pass on to 
795         QUERY. 
796         * sql/sql.lisp: add :field-names arg to QUERY. 
797         * tests/test-fdml.lisp: minor rework to use :field-names arg to 
798         SELECT. 
799
800 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk)
801         * sql/objects.lisp: fix bug in FIND-ALL when SELECT called with 2 
802         or more View Classes. 
803         * sql/objects.lisp: make the :flatp argument to SELECT work with 
804         object queries. 
805         * sql/objects.lisp: make SELECT accept a :result-types argument 
806         (defaults to :auto) which is passed on to QUERY.  
807         * sql/objects.lisp: SELECT returns field-names as a second value. 
808         * tests/test-ooddl.lisp: add flatp arg to SELECT calls as appropriate. 
809         * tests/test-fdml.lisp: add flatp/result-types arguments to calls 
810         to SELECT and take only first value as appropriate.
811         * tests/test-fdml.lisp: add two new tests for query result coercion 
812         and the field-names returned as a second value from SELECT. 
813         * tests/test-oodml.lisp: add flatp arg to SELECT calls as appropriate. 
814         
815 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
816         * Version 2.10.6-pre1
817         * sql/metaclasses.lisp: Add void-value slot
818         * doc/csql.xml: Update def-view-class documentation
819         * test/test-init.lisp: Change old :db-type to :db-kind.
820         Remove old :nulls-ok attributes.
821         * sql/objects.lisp: Add new universal-time and bigint
822         types. Optimize reading of integers using parse-integer
823         rather than read-from-string.
824         * */*.lisp: Merge clsql-base-sys and clsql-base packages
825         into clsql-base package
826         * classic/sql.lisp: Move large object support into base, leaving
827         classic without any functionality that is provided in the clsql
828         system.
829         * classic/package.lisp: Rename clsql-classic-sys package to
830         its former nickname of clsql-classic
831         
832 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
833         * Version 2.10.5: SQLite backend now passes all result-types tests
834         * clsql-sqlite.asd: Depend on clsql-uffi system
835         * db-sqlite/sqlite-sql.lisp: Use clsql-uffi:convert-raw-field
836         for efficiency and code reuse. 
837         * db-sqlite/sqlite-api-uffi.lisp: Change (* :char) to (* :unsigned-char)
838         for better cross-implementation compatibility.
839
840 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
841         * Version 2.10.4
842         * sql/tables.lisp: Fix typo in CACHE-TABLE-QUERIES
843         [Marcus Pearce]
844         * db-postgresql/postgresql-sql.lisp: Fix foreign-string vs. cstring
845         bug on SBCL in result-field-names function as reported by Marcus Pearce
846         * db-sqlite/sqlite-sql.lisp: Fix  in database-store-next-row
847         manifest in SBCL testing
848         
849 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
850         * Version 2.10.3
851         * sql/database.lisp: Conform more to CommonSQL output
852         for STATUS command [Marcus Pearce]
853         * sql/sqlite-sql.lisp: Rework to use result-types
854         * sql/sqlite-api-clisp.lisp: Add compatibility layer
855         with sqlite-api-uffi.lisp so that sqlite-sql.lisp can
856         be cleaned up of most clisp reader conditionals
857         * sql/test-init.lisp: Now run field type tests on sqlite
858         backend
859         
860 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
861         * Version 2.10.2
862         * base/basic-sql.lisp: Set default value of :result-types 
863         to :auto for more CommonSQL conformance. 
864         * test/test-fdml.lisp: Add tests for numeric value of fields
865         
866
867 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
868         * Version 2.10.1: New API function: CACHE-TABLE-QUERIES.
869         * base/basic-sql.lisp, db-*/*-sql.lisp: More CommonSQL conformance.
870         Return field names as second value for QUERY. This can be overridden
871         for efficiency with the new keyword :FIELD-NAMES set to NIL
872         in the QUERY invocation.
873         * test/test-fdml.lisp: Add tests for new field-name feature
874         * sql/metaclass.lisp: Remove old Lispworks cruft
875         and replace it with invocation of new code in kmr-mop.lisp
876         which actually works with Lispworks 4.2
877         * doc/ref_clsql.xml: Document new :FIELD-NAMES keyword to
878         QUERY function
879         * base/db-interface.lisp: Document the multiple values
880         returned by DATABASE-ATTRIBUTE-TYPE so matches the
881         undocumented CommonSQL behavior. 
882         * sql/table.lisp: Add *CACHE-TABLE-QUERIES-DEFAULT* and
883         *DEFAULT-UPDATE-OBJECTS-MAX-LEN* variables and export them.
884         LIST-ATTRIBUTE-TYPES now conforms to CommonSQL spec.
885         Implement CACHE-TABLE-QUERIES.
886         * db-odbc/odbc-sql.lisp: Fix attribute-type function
887         * test/test-fddl.lisp: Add tests for attribute type     
888         * db-mysql/mysql-sql.lisp: Mild optimization in accessing
889         field structures.
890         * base/classes.lisp: Add attribute-cache slot to database clas
891         * base/initialize.lisp: initialize-database-type now automatically
892         loads database-type backend as needed.
893         * base/test-init.lisp: Utilize new initialize-database-type functionality.
894         * TODO: remove items done
895         
896 30 Apr 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
897         * Version 2.9.6
898         * sql/objects.lisp: remove create/drop-sequence-from-class. 
899         * sql/objects.lisp: add INSTANCE-REFRESHED generic function. 
900         * sql/objects.lisp: improved CommonSQL compatibility for
901         UPDATE-RECORD-FROM-SLOT, UPDATE-RECORD-FROM-SLOTS,
902         UPDATE-RECORDS-FROM-INSTANCE and DELETE-INSTANCE-RECORDS. 
903         * sql/generics.lisp: move generics from objects.lisp to here. 
904         
905 29 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
906         * Version 2.9.6-pre1
907         * db-mysql/mysql-client-info.lisp: Add client version 4.1
908         detection
909         * sql/sql.lisp: Make *default-database* the default for
910         TRUNCATE-DATABASE
911         
912 28 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
913         * Version 2.9.5
914         * db-mysql/mysql-sql.lisp: Fix bug in transaction capability
915         detection
916         * sql/objects.lisp: Commit patch from Slawek Zak to allow specifying 
917         :metaclass in DEF-VIEW-CLASS invocation. This allows defining classes 
918         on a metaclass specialized from standard-db-class.
919
920         
921 24 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
922         * Version 2.9.4: Multiple changes to support Allegro's "modern"
923         lisp which uses a lowercase reader and has case-sensitive symbols
924         * sql/classes.lisp: Fix make-load-form bug for sql-ident-table
925         exposed by case-sensitive mlisp. 
926
927 22 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
928         * Version 2.9.3: All tests now pass on all platforms!
929         * LATEST-TEST-RESULTS: New file with summary of test results
930         * sql/generics.lisp: New file for generic function definitions.
931         * test/test-init.lisp: Display names of skipped tests.
932         Use unwind-protect to ensure disconnect
933         * sql/objects.lisp: Change database-type to database-underlying-type
934         so that actual database engine is properly identified
935         * db-odbc/odbc-api.lisp: Have default *time-conversion-function*
936         return an ISO timestring for compatibility with other drivers.
937         Workaround bug in MyODBC for LIST-TABLE-INDEXES
938         * test/test-fdml.lisp: Accomodate that odbc-postgresql driver
939         returns floating-point values for floor and truncate operations 
940         * db-aodbc/aodbc-sql.lisp: Implement DATABASE-LIST-VIEWS
941         * tests/test-basic.lisp: Port to regression tester
942         * test/test-init.lisp: Output to *report-stream*
943         * docs/appendix.xml: Document ODBC and SQLite backends.
944         * sql/classes.lisp: Make output-sql require a database parameter.
945         This allows SQL generation to have the proper case to support
946         the differences in case handling between CommonSQL API,
947         Postgresql, MySQL, Oracle.
948         
949 21 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
950         * Version 2.9.2: Improvments in database capability introspection
951         and querying. Support transactions in MySQL where available.
952         All tests now pass on MySQL and SQLite in addition to postgresql
953         and postgresql-socket. ODBC fails only with OODDL/TIME/1 and OODDL/TIME/2.
954         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST-VIEWS. Better support
955         DATABASE-LIST-SEQUENCES.
956         * clsql-uffi.asd, clsql-mysql.asd: Improve shared library loading
957         * Database_capabilies: add HAS-VIEWS, HAS-CREATE/DESTROY-DB,
958         HAS-BOOLEAN-WHERE, TRANSACTION-CAPABLE
959         * tests/*.lisp: Check database capabilities and remove tests which
960         the database backend does not support
961         * sql/table.lisp: Add :TRANSACTIONS keyword to create table which
962         controls whether InnoDB tables will be created when supported on
963         the underlying MySQL server.
964         
965 20 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
966         * Version 2.9.0: New API function: LIST-TABLE-INDEXES,
967         supported by all database backends (except AODBC since
968         AODBC doesn't support index querying)
969         * db-obdc/odbc-sql.lisp: Support DATABASE-LIST-INDEXES
970         * db-odbc/odbc-api.lisp: Add %TABLE-STATISTICS function
971         to support index queries
972         * db-aodbc/aodbc-sql.lisp: Filter driver manager
973         "information_schema" tables from LIST-TABLES
974         * tests/test-basic.lisp: Remove table after testing
975         * tests/test-fddl.lisp: Test LIST-TABLE-INDEXES
976         * base/db-interface.lisp: Add DATABASE-UNDERLYING-TYPE
977         which gets the underlying type of database -- required
978         when dealing with ODBC databases and want to query
979         database capabilities. Added DB-USE-COLUMN-ON-DROP-TABLES?
980         as first database-backend specific feature. Is T on
981         :mysql, NIL on other backends. Change DROP-TABLE to
982         query this.
983         
984 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
985         * Version 2.8.2: Build changes for FreeBSD [Slawek Zak]
986
987 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
988         * Version 2.8.1
989         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST function 
990         * db-odbc/odbc-dbi.lisp: Add LIST-ALL-DATA-SOURCES function 
991
992 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
993         * Version 2.8.0: New API function: LIST-DATABASES
994         * base/utils.lisp: Fix command-output on CMUCL/SBCL
995         * db-*/*-sql.lisp: Add new database-list function
996         * base/database.lisp: Add new LIST-DATABASES command
997         
998 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
999         * Version 2.7.9
1000         * db-sqlite/sqlite-sql.lisp: Fix sequence functions.
1001         * db-sqlite/sqlite-api-uffi.lisp: Print error string
1002         correctly.
1003         
1004 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1005         * Version 2.7.7
1006         * doc/csql.xml, examples/clsql-tutorial.lisp: Patch for db-kind
1007         from Eduardo Munoz.
1008         
1009 17 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1010         * Version 2.7.6
1011         * base/objects.lisp, base/classes.lisp: Patch
1012         for db-kind from Eduardo Munoz
1013         
1014 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1015         * Version 2.7.5
1016         * base/basic-sql.lisp: Fix FLATP in QUERY
1017
1018 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1019         * Version 2.7.3: Implement RECONNECT
1020
1021 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1022         * Version 2.7.2: Fix ODBC on Lispworks Windows
1023
1024 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1025         * Version 2.7.1: Fix for new ODBC backend.
1026         clsql-odbc now works on SBCL, CMUCL, OpenMCL
1027         in addition to AllegroCL and Lispworks.
1028
1029 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1030         * Version 2.7.0: New backend: ODBC. Tests as
1031         well as AODBC backend on Allegro,Lispworks.
1032         SBCL and CMUCL don't work quite yet.  Requires UFFI v1.4.11+
1033         * db-odbc/*.lisp: Add ODBC3 function SQLSetEnvAttr
1034         to explicitly set ODBC2 support. Add BIGINT support.
1035         Add result-types support. Added SQLTables.
1036         Fix array type in fetch-all-rows. Make width
1037         changable by database or query.
1038         * base/utils.lisp: Add process functions
1039         * base/package.lisp: Export utils to CLSQL-BASE-SYS
1040         * db-aodbc: Implement sequence functions,
1041         database-list-tables, database-list-attributes
1042         * tests/utils.lisp: Add support for ODBC backend,
1043         rework READ-SPECS to use +all-db-types+
1044         * db-mysql/mysql-sql.lisp: Use WITHOUT-INTERRUPTS
1045         for SEQUENCE-NEXT
1046         
1047 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1048         * Version 2.6.13. Requires UFFI version 1.4.9
1049         * db-odbc/*.lisp: Further porting.
1050         Pre-alpha code! But, basic query is now working.
1051
1052 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1053         * Version 2.6.12
1054         * base/transactions.lisp: Add quote for macro
1055         expansion of WITH-TRANSACTIONS [Time Howe]
1056         * db-sqlite/sqlite-sql.lisp: Support memory database
1057         in database-probe [Ng Pheng Siong]
1058         * db-odbc/*.lisp: Initial port to UFFI of SQL-ODBC.
1059         The DBI layer is not finished.
1060         
1061 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1062         * Version 2.6.11
1063         * sql/objects.lisp: add :root-class functionality for
1064         list-classes and add duration type support [Marcus Pearce]
1065         * db-odbc: Add mid-level [DBI] layer
1066
1067 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1068         * Version 2.6.10
1069         * db-aodbc: Add methods for generic functions, some are
1070         not yet implemented.
1071         * clsql-odbc.asd, db-odbc/*.lisp: Initial start of ODBC
1072         support
1073
1074 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1075         * Version 2.6.9
1076         * base/package.lisp: Add missing symbols [Marcus Pearce]
1077
1078 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1079         * Version 2.6.8
1080         * test/test-fddl.lisp: Cleanup fix [Marcus Pearce]
1081         * utils/time.lisp: Multiple fixes [Marcus Pearce]
1082         * sql/sql.lisp: Fix for truncate-database [Marcus Pearce]
1083         
1084 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1085         * Version 2.6.7
1086         * sql/*.lisp: Remove schema versioning cruft
1087         [Marcus Pearce]
1088         * Makefile: Add classic subdirectory
1089         
1090 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1091         * Version 2.6.6
1092         * sql/sql.lisp: Fix TRUNCATE command, bug reported
1093         by Marcus Pearce
1094         * sql/sql.lisp: Remove EXPLAIN function. Postgresql/Oracle
1095         specific and easy for an application to directly support.
1096         Idea from Marcus Pearce.
1097         * base/basic-sql.lisp: Remove DESCRIBE-TABLE top-level 
1098         API as duplicates LIST-ATTRIBUTE-TYPES [Marcus Pearce].
1099         Keep low-level interface for future optimization
1100         supporting LIST-ATTRIBUTE-TYPES command.
1101         * Makefile: Add to db-sqlite and test directories.
1102         Include them in top-level Makefile
1103         
1104 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1105         * Version 2.6.5
1106         * sql/relations.lisp: Add missing file
1107         * utils/time.lisp: Fixes/extensions [Marcus Pearce]
1108         * test/test-time.lips: New file [Marcus Pearce]
1109         
1110 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1111         * Version 2.6.4
1112         * test/test-init.lisp: Properly handle object
1113         creation. Close database after use.
1114         * sql/sql.lisp: Make DESCRIBE-TABLE a generic
1115         function so can have methods specialized on
1116         table being a string or an sql-table object.
1117         * base/pool.lisp: Really fix CMUCL locking
1118         
1119 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1120         * Version 2.6.3
1121         * test/test-init.lisp: Signal correctly
1122         if any errors occurred in any test suite
1123         * base/loop-extensions.lisp: Fix error
1124         introduced for Lispworks
1125         * base/pool.lisp: Fix locking for CMUCL
1126         * base/objects.lisp: Remove schema-version cruft
1127         
1128 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1129         * Version 2.6.2: New CLSQL API functions:
1130         DESCRIBE-TABLE AND TRUNCATE-DATABASE
1131         Currently, this are only supported on :postgresql
1132         and :postgresql-socket
1133         * base/database.lisp: automatically load ASDF system
1134         in CONNECT if not already loaded
1135         * base/tests.lisp: disconnect database after testing 
1136         * base/*.lisp: Remove CLOSED-DATABASE type in favor
1137         of storing open/closed status in slot of database
1138         * base/pool.lisp: Support locks for CMUCL, OpenMCL, SBCL
1139         * db-postgresql/postgresql-sql.lisp: add DATABASE-RECONNECT,
1140         DATABASE-DESCRIBE-TABLE
1141         * db-sqlite/sqlite-sql.lisp: Add missing slots in database
1142         * base/conditions: Remove duplicate condition
1143         * db-*/*-sql.lisp: Fill new database slot DATABASE-TYPE
1144         * base/recording.lisp: Add new :QUERY type for recording
1145         
1146 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1147         * Version 2.6.1: documentation fixes, merged
1148         classic-tests into tests
1149
1150 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1151         * Version 2.6.0 released: New API functions
1152         CREATE-DATABASE, DESTORY-DATABASE, PROBE-DATABASE
1153         * doc/ref_clsql.xml: Document new functions
1154         * base/database.lisp: New API functions
1155         * base/conditions.lisp: Added CLSQL-ACCESS-ERROR
1156         * base/utils.lisp: Fix use of position-char.
1157         Add COMMAND-OUTPUT used by backends for running
1158         external programs. Fix parsing of SQL*NET-compatible
1159         connection-specs.
1160         * base/loop-extension.lisp: Simplify package use
1161         for Lispworks and Allegro
1162         * db-*/*-sql.lisp: Added DATABASE-CREATE,
1163         DATABASE-DESTORY, PROBE-DATABASE methods
1164         * tests/test-init.lisp, clasic-tests/tests.lisp:
1165         Use destroy-database and create-database to ensure 
1166         testing with empty database
1167         * tests/test-connection.lisp: Add tests for
1168         parsing of string connection-specs
1169         * examples/run-tests.sh: New file for running
1170         test suite on all installed CL implementations
1171         * examples/clsql-tutorial.lisp: moved from
1172         doc directory
1173         * examples/dot.clsql-tests.config: New file
1174         giving an example test configuration
1175         * test/README: Add notes about rtest/ptester
1176         downloads and link to sample test configuration file.
1177         
1178 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1179         * Version 2.5.1 released:
1180         * tests/*.lisp: Rework so tests are run
1181         on multiple backends automatically based
1182         on the contents of ~/.clsql-tests.config.
1183         Reuse helper functions from classic-tests.
1184         * base/database.lisp: Support connection-spec
1185         as string for CONNECT
1186         * classic-tests/tests.lisp: Automatically
1187         load database backends as needed. 
1188         
1189 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1190         * Version 2.5.0 released:
1191         All tests for CLSQL and CLSQL-CLASSIC pass
1192         on all platforms.
1193         * base/loop-extension.lisp: Add Lispworks
1194         loop-extension. Improve type specifying on
1195         other platforms.
1196         
1197 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1198         * Version 2.4.2 released:
1199         loop extension now supported on Allegro, all
1200         CLSQL-TESTS pass on Allegro.
1201         * sql/metaclasses.lisp: Some optimization
1202         of compute-slots, be selective when
1203         ordered-class-slots needs to be called
1204         instead of class-slots
1205         * TODO: add URL with documentation on
1206         extending Lispworks LOOP form
1207         
1208 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1209         * Version 2.4.1 released: CLSQL-TESt suite passes
1210         all tests for postgresql and CMUCL, SBCL, OpenMCL.
1211         Allegro and Lispworks pass all tests except for
1212         FDML/LOOP/1 since the loop extension have not yet
1213         been ported to those implementions.
1214         * sql/metaclasses.lisp: Added new slot to standard-db-class
1215         to hold user-specified type. OpenMCL adjustments to compensate
1216         for its type-predicate function. Since AllegroCL, Lispworks,
1217         and OpenMCL have different slot orders, added compute-slots
1218         and ordered-class-slots functions so their slot order matches
1219         SBCL/CMUCL.
1220
1221 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1222         * Version 2.4.0 released: All tests for clsql-classic now finish
1223         correctly on Allegro, Lispworks, CMUCL, SBCL, OpenMCL for
1224         mysql, postgresql, postgresql-sockets, and sqlite backends.
1225         * db-mysql/mysql-sql.lisp: Fix array dereferencing
1226         * classic-tests/tests.lisp: Fix package name of
1227         number-to-sql-string. 
1228         * clsql.asd/clsql-tests.asd: Add support for asdf:test-op
1229         * db-sqlite/sqlite-api-{uffi,sql}.lisp: Multiple UFFI fixes,
1230         now passes tests on all support UFFI platforms.
1231         * db-postgresql-socket/postgresql-socket-api.list: Ported to 
1232         SBCL and OpenMCL
1233         * multiple: Finish renaming of :types keyword to :result-types for
1234         greater CommonSQL compatibility, including documentation
1235         * sql/basic-cmds.lisp: Remove obsolete file
1236         
1237 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1238         * Version 2.3.3 released
1239         * Fixes for sequences on mysql and sqlite [Marcus Pearce]
1240         * Fixes for uffi sqlite backend [Aurelio Bignoli / Kevin Rosenberg]
1241         * Fix for schema table [Marcus Pearce]
1242         * Add loop extension support for SBCL and OpenMCL [Marcus Pearce]
1243         * Fixes to test suite [Marcus Pearce]
1244
1245 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1246         * db-*/*-sql.lisp: Ensure that expr in
1247         database-query-result-set is a string
1248         * Documentation integration
1249         
1250 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1251         * With for Marcus Pearce's excellent work, I've merged
1252         his clsql-usql port into clsql. The original clsql
1253         interface is available in the clsql-classic package.
1254
1255 02 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
1256         * Integrate patch from Marcus Pearce <ek735@soi.city.ac.uk>
1257         adding further support for providing backend for UncommonSQL
1258
1259 10 Mar 2004 Kevin Rosenberg (kevin@rosenberg.net)
1260         * Integrate patch from Aurelio Bignoli for SQLite backend
1261
1262 11 Nov 2003 Kevin Rosenberg (kevin@rosenberg.net)
1263         * Converted documentation to XML format
1264         * Made package installable with asdf-install
1265
1266 23 Jul 2003 Kevin Rosenberg (kevin@rosenberg.net)
1267         * Add for-each-row macro
1268
1269 12 Dec 2002 Kevin Rosenberg (kevin@rosenberg.net)
1270         * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL
1271         
1272 16 Oct 2002 Kevin Rosenberg (kevin@rosenberg.net)
1273         * Add support for SBCL, OpenMCL, and SCL
1274         * Add *load-truename* to search path for clsql's
1275         compiled libraries.
1276
1277 01 Sep 2002 Kevin Rosenberg (kevin@rosenberg.net)
1278         * Rework use of file types in .asd files
1279
1280 17 Aug 2002 Kevin Rosenberg (kevin@rosenberg.net)
1281         * Add .asd definition files for ASDF users
1282
1283 31 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
1284         * Restructure directories for Common Lisp Controller v3 compatibility
1285
1286 25 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
1287         * Also change case of logical host in loader files
1288         * Rework handling of logical pathnames
1289         
1290 05 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
1291         * Change case of logical host
1292         
1293 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
1294         * clsql-base.system: Added base package that can be used without
1295         high-level SQL commands. Used for adding support for UncommonSQL.
1296         * *.system: Reworked logical pathnames to be more consistent with
1297         Common Lisp Controller.
1298         * debian/*: Completed initial Debian support
1299         
1300 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1301         * sql/classes.cl:
1302         * sql/transactions.cl:
1303         Added transaction support. Functions/macros added:
1304         with-transaction, commit-transaction, rollback-transaction,
1305         add-transaction-commit-hook, add-transaction-rollback-hook
1306
1307 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1308         * sql/sql.cl:
1309         * sql/pool.cl:
1310         * sql/functional.cl:
1311         Added pool support in connect/disconnect and with-database.
1312         Removed with-db-from-pool as with-database can now works with the connections pool
1313
1314 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1315         * sql/sql.cl:
1316         * sql/pool.cl:
1317         * sql/classes.cl:
1318         * sql/package.cl:
1319         Completed connection pool.
1320         Added with-db-from-pool macro.
1321         
1322 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1323         * Multiple files:
1324         Added initial support for connection pool
1325         * sql/transactions.cl
1326         Took transaction code from UncommonSQL and integrated
1327         into CLSQL code. See file for disclaimer about why this
1328         was added.
1329
1330 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1331         * interfaces/postgresql/postgresql-sql.cl:
1332         Fix keyword typo in database-read-large-object
1333         * interfaces/mysql/mysql-loader.cl
1334         Fix loading on Win32
1335         * test-suite/tester-clsql.cl
1336         Fix type coercion of double-float
1337         * doc/*
1338         Added debian docbook catalog, made it the default
1339         
1340 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
1341         * interface/postgresql/postgresql-api.cl:
1342         * interface/postgresql/postgresql-sql.cl:
1343         * sql/sql.cl:
1344         * sql/db-interface.cl:
1345         Added large objects support for postgresql.
1346
1347 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1348         * src/postgresql-socket/postgresql-socket-api.cl:
1349         Fixed find-foreign-function call, eliminated crypt warning
1350         * Makefiles:
1351         Multiple improvements
1352         * sql/usql.cl:
1353         Moved functionality from low-level interfaces to this file
1354         via generic functions
1355         * test-suite/tester.cl:
1356         Added test with acl-compat-tester, moved others to old-tests
1357         directory.
1358         
1359 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
1360         * src/usql.cl:
1361         Reinstated commented out sections
1362         * interfaces/postgresql/postgresql-loader.cl:
1363         * interfaces/mysql/mysql-loader.cl:
1364         Updated find-forieign-library support.
1365         * interfaces/postgresql-socket/postgresql-socket-package.cl:
1366         Fixed require form for Lispworks (Thanks Marc Battyani!)
1367         * interfaces/postgresql-socket/postgresql-socket-api.cl:
1368         Fixed eval of def-function for crypt library.
1369                 
1370 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1371         * Added interface to support USQL high-level rouines
1372         
1373 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1374         * Separated db-interface and conditions from sql/sql.cl
1375         * Improved foreign library loading testing
1376         * interfaces/postgresql/postgresql-api.cl
1377         Added PQisBusy function
1378         * interfaces/clsql-uffi/clsql-uffi.cl
1379         Fixed sign error for 64-bit processing
1380         
1381 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1382         * interfaces/postgresql-socket/postgresql-socket-api.cl:
1383         Fixes to read-double-from-socket. Added 64-bit integer support.
1384         * test-suite/xptest-clsql.cl
1385         Added testint for 64-bit integers
1386         * Additons to installation docs
1387         
1388 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1389         * interfaces/postgresql-socket/postgresql-socket-api.cl:
1390         Implemented direct socket reading for field type :double
1391         * Added usage information for :types to documentation
1392         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
1393         atol, atof calls
1394         * interfaces/clsql-uffi: Created new directory. Split common
1395         interface routines that use UFFI into this package. Required
1396         especially to support direct reading of 64-bit integers into
1397         bignums and bypassing temporary strings.
1398         * test-clsql.cl: Updated to test postgresql-socket's
1399         read-double-from-socket function.
1400         * test-suite/xptest-clsql.cl
1401         Started work on test suite
1402
1403 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1404         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
1405         mysql-fetch-field-direct Got :auto types working
1406         * interfaces/postgresql/postgresql-api.cl
1407         * interfaces/postgresql-socket/postgresql-socket-api.cl
1408         Added pgsql-field-types enum. Got :auto types working.
1409         * multiple-files
1410         Renamed :field-types to :types.
1411         
1412 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1413         * Added field-types parameter to query, database-query,
1414         database-query-result-set, map-query. Haven't added code
1415         to utilize field types, yet.
1416         * Changed postgresql-socket result set from cons to a structure
1417         * Updated test-clsql.cl to use automated testing with a config
1418         file
1419         * Changed return types of field accessors from cstring to
1420         (* :unsigned-char).  This prepares for being able to use specified
1421         type conversions when taking field data into lisp.
1422         * Added field-type processing for most interfaces. Not done yet.
1423         
1424 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
1425         * doc/ref.sgml: Updated MAP-QUERY example to use
1426         *read-default-float-format* (John Foderaro)
1427         * Extensive work to foreign library loaders and .system files to
1428         check for successful loading of foreign libraries.
1429         * Modified test-clsql.cl to allow more modularity and
1430         automated testing in future release.
1431         * mysql/mysql-sql.lisp: Added field types
1432         
1433 01 Jan 2002 Kevin Rosenberg (kevin@rosenberg.net)
1434         * mysql/mysql-sql.lisp:
1435         - Added support for Allegro CL and Lispworks using UFFI layer
1436         - Changed database-connect to use mysql-real-connect. This way,
1437           can avoid using double (unwind-protect)
1438         - Changed database-connect to have MySQL library allocate space
1439           for MYSQL structure. This will make the code more robust in
1440           the event that MySQL library changes the size of the mysql-mysql
1441           structure.
1442
1443