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