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