e54a205f4fc68546565dedf232cf3dfe6246e94c
[clsql.git] / ChangeLog
1 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2         * Version 2.5.0 released:
3         All tests for CLSQL and CLSQL-CLASSIC pass
4         on all platforms.
5         * base/loop-extension.lisp: Add Lispworks
6         loop-extension. Improve type specifying on
7         other platforms.
8         
9 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
10         * Version 2.4.2 released:
11         loop extension now supported on Allegro, all
12         CLSQL-TESTS pass on Allegro.
13         * sql/metaclasses.lisp: Some optimization
14         of compute-slots, be selective when
15         ordered-class-slots needs to be called
16         instead of class-slots
17         * TODO: add URL with documentation on
18         extending Lispworks LOOP form
19         
20 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
21         * Version 2.4.1 released: CLSQL-TESt suite passes
22         all tests for postgresql and CMUCL, SBCL, OpenMCL.
23         Allegro and Lispworks pass all tests except for
24         FDML/LOOP/1 since the loop extension have not yet
25         been ported to those implementions.
26         * sql/metaclasses.lisp: Added new slot to standard-db-class
27         to hold user-specified type. OpenMCL adjustments to compensate
28         for its type-predicate function. Since AllegroCL, Lispworks,
29         and OpenMCL have different slot orders, added compute-slots
30         and ordered-class-slots functions so their slot order matches
31         SBCL/CMUCL.
32
33 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
34         * Version 2.4.0 released: All tests for clsql-classic now finish
35         correctly on Allegro, Lispworks, CMUCL, SBCL, OpenMCL for
36         mysql, postgresql, postgresql-sockets, and sqlite backends.
37         * db-mysql/mysql-sql.lisp: Fix array dereferencing
38         * classic-tests/tests.lisp: Fix package name of
39         number-to-sql-string. 
40         * clsql.asd/clsql-tests.asd: Add support for asdf:test-op
41         * db-sqlite/sqlite-api-{uffi,sql}.lisp: Multiple UFFI fixes,
42         now passes tests on all support UFFI platforms.
43         * db-postgresql-socket/postgresql-socket-api.list: Ported to 
44         SBCL and OpenMCL
45         * multiple: Finish renaming of :types keyword to :result-types for
46         greater CommonSQL compatibility, including documentation
47         * sql/basic-cmds.lisp: Remove obsolete file
48         
49 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
50         * Version 2.3.3 released
51         * Fixes for sequences on mysql and sqlite [Marcus Pearce]
52         * Fixes for uffi sqlite backend [Aurelio Bignoli / Kevin Rosenberg]
53         * Fix for schema table [Marcus Pearce]
54         * Add loop extension support for SBCL and OpenMCL [Marcus Pearce]
55         * Fixes to test suite [Marcus Pearce]
56
57 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
58         * db-*/*-sql.lisp: Ensure that expr in
59         database-query-result-set is a string
60         * Documentation integration
61         
62 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
63         * With for Marcus Pearce's excellent work, I've merged
64         his clsql-usql port into clsql. The original clsql
65         interface is available in the clsql-classic package.
66
67 02 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
68         * Integrate patch from Marcus Pearce <ek735@soi.city.ac.uk>
69         adding further support for providing backend for UncommonSQL
70
71 10 Mar 2004 Kevin Rosenberg (kevin@rosenberg.net)
72         * Integrate patch from Aurelio Bignoli for SQLite backend
73
74 11 Nov 2003 Kevin Rosenberg (kevin@rosenberg.net)
75         * Converted documentation to XML format
76         * Made package installable with asdf-install
77
78 23 Jul 2003 Kevin Rosenberg (kevin@rosenberg.net)
79         * Add for-each-row macro
80
81 12 Dec 2002 Kevin Rosenberg (kevin@rosenberg.net)
82         * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL
83         
84 16 Oct 2002 Kevin Rosenberg (kevin@rosenberg.net)
85         * Add support for SBCL, OpenMCL, and SCL
86         * Add *load-truename* to search path for clsql's
87         compiled libraries.
88
89 01 Sep 2002 Kevin Rosenberg (kevin@rosenberg.net)
90         * Rework use of file types in .asd files
91
92 17 Aug 2002 Kevin Rosenberg (kevin@rosenberg.net)
93         * Add .asd definition files for ASDF users
94
95 31 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
96         * Restructure directories for Common Lisp Controller v3 compatibility
97
98 25 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
99         * Also change case of logical host in loader files
100         * Rework handling of logical pathnames
101         
102 05 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
103         * Change case of logical host
104         
105 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
106         * clsql-base.system: Added base package that can be used without
107         high-level SQL commands. Used for adding support for UncommonSQL.
108         * *.system: Reworked logical pathnames to be more consistent with
109         Common Lisp Controller.
110         * debian/*: Completed initial Debian support
111         
112 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
113         * sql/classes.cl:
114         * sql/transactions.cl:
115         Added transaction support. Functions/macros added:
116         with-transaction, commit-transaction, rollback-transaction,
117         add-transaction-commit-hook, add-transaction-rollback-hook
118
119 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
120         * sql/sql.cl:
121         * sql/pool.cl:
122         * sql/functional.cl:
123         Added pool support in connect/disconnect and with-database.
124         Removed with-db-from-pool as with-database can now works with the connections pool
125
126 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
127         * sql/sql.cl:
128         * sql/pool.cl:
129         * sql/classes.cl:
130         * sql/package.cl:
131         Completed connection pool.
132         Added with-db-from-pool macro.
133         
134 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
135         * Multiple files:
136         Added initial support for connection pool
137         * sql/transactions.cl
138         Took transaction code from UncommonSQL and integrated
139         into CLSQL code. See file for disclaimer about why this
140         was added.
141
142 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
143         * interfaces/postgresql/postgresql-sql.cl:
144         Fix keyword typo in database-read-large-object
145         * interfaces/mysql/mysql-loader.cl
146         Fix loading on Win32
147         * test-suite/tester-clsql.cl
148         Fix type coercion of double-float
149         * doc/*
150         Added debian docbook catalog, made it the default
151         
152 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
153         * interface/postgresql/postgresql-api.cl:
154         * interface/postgresql/postgresql-sql.cl:
155         * sql/sql.cl:
156         * sql/db-interface.cl:
157         Added large objects support for postgresql.
158
159 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
160         * src/postgresql-socket/postgresql-socket-api.cl:
161         Fixed find-foreign-function call, eliminated crypt warning
162         * Makefiles:
163         Multiple improvements
164         * sql/usql.cl:
165         Moved functionality from low-level interfaces to this file
166         via generic functions
167         * test-suite/tester.cl:
168         Added test with acl-compat-tester, moved others to old-tests
169         directory.
170         
171 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
172         * src/usql.cl:
173         Reinstated commented out sections
174         * interfaces/postgresql/postgresql-loader.cl:
175         * interfaces/mysql/mysql-loader.cl:
176         Updated find-forieign-library support.
177         * interfaces/postgresql-socket/postgresql-socket-package.cl:
178         Fixed require form for Lispworks (Thanks Marc Battyani!)
179         * interfaces/postgresql-socket/postgresql-socket-api.cl:
180         Fixed eval of def-function for crypt library.
181                 
182 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
183         * Added interface to support USQL high-level rouines
184         
185 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
186         * Separated db-interface and conditions from sql/sql.cl
187         * Improved foreign library loading testing
188         * interfaces/postgresql/postgresql-api.cl
189         Added PQisBusy function
190         * interfaces/clsql-uffi/clsql-uffi.cl
191         Fixed sign error for 64-bit processing
192         
193 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
194         * interfaces/postgresql-socket/postgresql-socket-api.cl:
195         Fixes to read-double-from-socket. Added 64-bit integer support.
196         * test-suite/xptest-clsql.cl
197         Added testint for 64-bit integers
198         * Additons to installation docs
199         
200 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
201         * interfaces/postgresql-socket/postgresql-socket-api.cl:
202         Implemented direct socket reading for field type :double
203         * Added usage information for :types to documentation
204         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
205         atol, atof calls
206         * interfaces/clsql-uffi: Created new directory. Split common
207         interface routines that use UFFI into this package. Required
208         especially to support direct reading of 64-bit integers into
209         bignums and bypassing temporary strings.
210         * test-clsql.cl: Updated to test postgresql-socket's
211         read-double-from-socket function.
212         * test-suite/xptest-clsql.cl
213         Started work on test suite
214
215 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
216         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
217         mysql-fetch-field-direct Got :auto types working
218         * interfaces/postgresql/postgresql-api.cl
219         * interfaces/postgresql-socket/postgresql-socket-api.cl
220         Added pgsql-field-types enum. Got :auto types working.
221         * multiple-files
222         Renamed :field-types to :types.
223         
224 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
225         * Added field-types parameter to query, database-query,
226         database-query-result-set, map-query. Haven't added code
227         to utilize field types, yet.
228         * Changed postgresql-socket result set from cons to a structure
229         * Updated test-clsql.cl to use automated testing with a config
230         file
231         * Changed return types of field accessors from cstring to
232         (* :unsigned-char).  This prepares for being able to use specified
233         type conversions when taking field data into lisp.
234         * Added field-type processing for most interfaces. Not done yet.
235         
236 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
237         * doc/ref.sgml: Updated MAP-QUERY example to use
238         *read-default-float-format* (John Foderaro)
239         * Extensive work to foreign library loaders and .system files to
240         check for successful loading of foreign libraries.
241         * Modified test-clsql.cl to allow more modularity and
242         automated testing in future release.
243         * mysql/mysql-sql.lisp: Added field types
244         
245 01 Jan 2002 Kevin Rosenberg (kevin@rosenberg.net)
246         * mysql/mysql-sql.lisp:
247         - Added support for Allegro CL and Lispworks using UFFI layer
248         - Changed database-connect to use mysql-real-connect. This way,
249           can avoid using double (unwind-protect)
250         - Changed database-connect to have MySQL library allocate space
251           for MYSQL structure. This will make the code more robust in
252           the event that MySQL library changes the size of the mysql-mysql
253           structure.
254
255