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