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