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