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