r8860: new upstream
[clsql.git] / ChangeLog
1 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2         * With for Marcus Pearce's excellent work, I've merged
3         his clsql-usql port into clsql. The original clsql
4         interface is available in the clsql-classic package.
5
6 02 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
7         * Integrate patch from Marcus Pearce <ek735@soi.city.ac.uk>
8         adding further support for providing backend for UncommonSQL
9
10 10 Mar 2004 Kevin Rosenberg (kevin@rosenberg.net)
11         * Integrate patch from Aurelio Bignoli for SQLite backend
12
13 11 Nov 2003 Kevin Rosenberg (kevin@rosenberg.net)
14         * Converted documentation to XML format
15         * Made package installable with asdf-install
16
17 23 Jul 2003 Kevin Rosenberg (kevin@rosenberg.net)
18         * Add for-each-row macro
19
20 12 Dec 2002 Kevin Rosenberg (kevin@rosenberg.net)
21         * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL
22         
23 16 Oct 2002 Kevin Rosenberg (kevin@rosenberg.net)
24         * Add support for SBCL, OpenMCL, and SCL
25         * Add *load-truename* to search path for clsql's
26         compiled libraries.
27
28 01 Sep 2002 Kevin Rosenberg (kevin@rosenberg.net)
29         * Rework use of file types in .asd files
30
31 17 Aug 2002 Kevin Rosenberg (kevin@rosenberg.net)
32         * Add .asd definition files for ASDF users
33
34 31 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
35         * Restructure directories for Common Lisp Controller v3 compatibility
36
37 25 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
38         * Also change case of logical host in loader files
39         * Rework handling of logical pathnames
40         
41 05 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
42         * Change case of logical host
43         
44 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
45         * clsql-base.system: Added base package that can be used without
46         high-level SQL commands. Used for adding support for UncommonSQL.
47         * *.system: Reworked logical pathnames to be more consistent with
48         Common Lisp Controller.
49         * debian/*: Completed initial Debian support
50         
51 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
52         * sql/classes.cl:
53         * sql/transactions.cl:
54         Added transaction support. Functions/macros added:
55         with-transaction, commit-transaction, rollback-transaction,
56         add-transaction-commit-hook, add-transaction-rollback-hook
57
58 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
59         * sql/sql.cl:
60         * sql/pool.cl:
61         * sql/functional.cl:
62         Added pool support in connect/disconnect and with-database.
63         Removed with-db-from-pool as with-database can now works with the connections pool
64
65 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
66         * sql/sql.cl:
67         * sql/pool.cl:
68         * sql/classes.cl:
69         * sql/package.cl:
70         Completed connection pool.
71         Added with-db-from-pool macro.
72         
73 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
74         * Multiple files:
75         Added initial support for connection pool
76         * sql/transactions.cl
77         Took transaction code from UncommonSQL and integrated
78         into CLSQL code. See file for disclaimer about why this
79         was added.
80
81 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
82         * interfaces/postgresql/postgresql-sql.cl:
83         Fix keyword typo in database-read-large-object
84         * interfaces/mysql/mysql-loader.cl
85         Fix loading on Win32
86         * test-suite/tester-clsql.cl
87         Fix type coercion of double-float
88         * doc/*
89         Added debian docbook catalog, made it the default
90         
91 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
92         * interface/postgresql/postgresql-api.cl:
93         * interface/postgresql/postgresql-sql.cl:
94         * sql/sql.cl:
95         * sql/db-interface.cl:
96         Added large objects support for postgresql.
97
98 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
99         * src/postgresql-socket/postgresql-socket-api.cl:
100         Fixed find-foreign-function call, eliminated crypt warning
101         * Makefiles:
102         Multiple improvements
103         * sql/usql.cl:
104         Moved functionality from low-level interfaces to this file
105         via generic functions
106         * test-suite/tester.cl:
107         Added test with acl-compat-tester, moved others to old-tests
108         directory.
109         
110 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
111         * src/usql.cl:
112         Reinstated commented out sections
113         * interfaces/postgresql/postgresql-loader.cl:
114         * interfaces/mysql/mysql-loader.cl:
115         Updated find-forieign-library support.
116         * interfaces/postgresql-socket/postgresql-socket-package.cl:
117         Fixed require form for Lispworks (Thanks Marc Battyani!)
118         * interfaces/postgresql-socket/postgresql-socket-api.cl:
119         Fixed eval of def-function for crypt library.
120                 
121 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
122         * Added interface to support USQL high-level rouines
123         
124 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
125         * Separated db-interface and conditions from sql/sql.cl
126         * Improved foreign library loading testing
127         * interfaces/postgresql/postgresql-api.cl
128         Added PQisBusy function
129         * interfaces/clsql-uffi/clsql-uffi.cl
130         Fixed sign error for 64-bit processing
131         
132 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
133         * interfaces/postgresql-socket/postgresql-socket-api.cl:
134         Fixes to read-double-from-socket. Added 64-bit integer support.
135         * test-suite/xptest-clsql.cl
136         Added testint for 64-bit integers
137         * Additons to installation docs
138         
139 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
140         * interfaces/postgresql-socket/postgresql-socket-api.cl:
141         Implemented direct socket reading for field type :double
142         * Added usage information for :types to documentation
143         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
144         atol, atof calls
145         * interfaces/clsql-uffi: Created new directory. Split common
146         interface routines that use UFFI into this package. Required
147         especially to support direct reading of 64-bit integers into
148         bignums and bypassing temporary strings.
149         * test-clsql.cl: Updated to test postgresql-socket's
150         read-double-from-socket function.
151         * test-suite/xptest-clsql.cl
152         Started work on test suite
153
154 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
155         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
156         mysql-fetch-field-direct Got :auto types working
157         * interfaces/postgresql/postgresql-api.cl
158         * interfaces/postgresql-socket/postgresql-socket-api.cl
159         Added pgsql-field-types enum. Got :auto types working.
160         * multiple-files
161         Renamed :field-types to :types.
162         
163 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
164         * Added field-types parameter to query, database-query,
165         database-query-result-set, map-query. Haven't added code
166         to utilize field types, yet.
167         * Changed postgresql-socket result set from cons to a structure
168         * Updated test-clsql.cl to use automated testing with a config
169         file
170         * Changed return types of field accessors from cstring to
171         (* :unsigned-char).  This prepares for being able to use specified
172         type conversions when taking field data into lisp.
173         * Added field-type processing for most interfaces. Not done yet.
174         
175 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
176         * doc/ref.sgml: Updated MAP-QUERY example to use
177         *read-default-float-format* (John Foderaro)
178         * Extensive work to foreign library loaders and .system files to
179         check for successful loading of foreign libraries.
180         * Modified test-clsql.cl to allow more modularity and
181         automated testing in future release.
182         * mysql/mysql-sql.lisp: Added field types
183         
184 01 Jan 2002 Kevin Rosenberg (kevin@rosenberg.net)
185         * mysql/mysql-sql.lisp:
186         - Added support for Allegro CL and Lispworks using UFFI layer
187         - Changed database-connect to use mysql-real-connect. This way,
188           can avoid using double (unwind-protect)
189         - Changed database-connect to have MySQL library allocate space
190           for MYSQL structure. This will make the code more robust in
191           the event that MySQL library changes the size of the mysql-mysql
192           structure.
193
194