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