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