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