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