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