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