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