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