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