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